aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless/genregdb.awk
diff options
context:
space:
mode:
authorLuis R. Rodriguez <mcgrof@do-not-panic.com>2013-10-28 03:19:46 +0100
committerJohannes Berg <johannes.berg@intel.com>2013-11-25 20:50:58 +0100
commitae689390b09d1f5b274c83dbbd3836fedb692e31 (patch)
treef5b3845c1e233585f440edcb3857868a6d60b276 /net/wireless/genregdb.awk
parentcfg80211: add function helpers to genregdb.awk (diff)
downloadlinux-dev-ae689390b09d1f5b274c83dbbd3836fedb692e31.tar.xz
linux-dev-ae689390b09d1f5b274c83dbbd3836fedb692e31.zip
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/genregdb.awk')
-rw-r--r--net/wireless/genregdb.awk2
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);"