diff options
author | Luis R. Rodriguez <mcgrof@do-not-panic.com> | 2013-10-28 03:19:46 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-11-25 20:50:58 +0100 |
commit | ae689390b09d1f5b274c83dbbd3836fedb692e31 (patch) | |
tree | f5b3845c1e233585f440edcb3857868a6d60b276 /net/wireless | |
parent | af9b223551634ce1881de258169f3a1ea686a865 (diff) | |
download | linux-ae689390b09d1f5b274c83dbbd3836fedb692e31.tar.bz2 |
cfg80211: fix parsing when db.txt ends on a rule
If genregdb.awk assumes the file will end with an
extra empty line or a comment line. This is could
not be true so just address this.
Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
Acked-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless')
-rw-r--r-- | net/wireless/genregdb.awk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/wireless/genregdb.awk b/net/wireless/genregdb.awk index 42cd3fd2aa14..9a8217d2a908 100644 --- a/net/wireless/genregdb.awk +++ b/net/wireless/genregdb.awk @@ -143,6 +143,8 @@ active && /^[ \t]*$/ { } END { + if (active) + print_tail_country() print regdb "};" print "" print "int reg_regdb_size = ARRAY_SIZE(reg_regdb);" |