diff options
author | Luis R. Rodriguez <mcgrof@do-not-panic.com> | 2013-10-21 13:47:25 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-11-27 11:19:49 -0500 |
commit | ef296c1b59ce96ef2aa1844fe4b80c87249a795a (patch) | |
tree | 58f71f45afc0d94ca5a541087e2b19b4a3bb1e16 /dbparse.py | |
parent | 159f0f39db427f63e188839eac78718a8efe697e (diff) | |
download | external_wireless-regdb-ef296c1b59ce96ef2aa1844fe4b80c87249a795a.tar.gz external_wireless-regdb-ef296c1b59ce96ef2aa1844fe4b80c87249a795a.tar.bz2 external_wireless-regdb-ef296c1b59ce96ef2aa1844fe4b80c87249a795a.zip |
wireless-regdb: consolidate passive-scan and no-ibss flags
These are used interchangeably so just do away
with the redundancy.
Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'dbparse.py')
-rwxr-xr-x | dbparse.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,8 +12,8 @@ flag_definitions = { 'DFS': 1<<4, 'PTP-ONLY': 1<<5, 'PTMP-ONLY': 1<<6, - 'PASSIVE-SCAN': 1<<7, - 'NO-IBSS': 1<<8, + 'NO-IR': 1<<7, + # hole at bit 8 # hole at bit 9. FIXME: Where is NO-HT40 defined? 'NO-HT40': 1<<10, } |