aboutsummaryrefslogtreecommitdiffstats
path: root/package/iw/patches/100-survey_freq_in_use.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-09-29 15:16:21 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-09-29 15:16:21 +0000
commit5dc2fe588db82f6ce91303a20d879783581ae8d1 (patch)
treee1757a9fcf67583f029038b623c6549187454a76 /package/iw/patches/100-survey_freq_in_use.patch
parent6f8a7385875333275d4ae07d8e9e2cd6a137d268 (diff)
downloadupstream-5dc2fe588db82f6ce91303a20d879783581ae8d1.tar.gz
upstream-5dc2fe588db82f6ce91303a20d879783581ae8d1.tar.bz2
upstream-5dc2fe588db82f6ce91303a20d879783581ae8d1.zip
iw: update to 0.9.21, add support for showing the in-use flag for survey data
SVN-Revision: 23155
Diffstat (limited to 'package/iw/patches/100-survey_freq_in_use.patch')
-rw-r--r--package/iw/patches/100-survey_freq_in_use.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/package/iw/patches/100-survey_freq_in_use.patch b/package/iw/patches/100-survey_freq_in_use.patch
new file mode 100644
index 0000000000..e6e7eafdf4
--- /dev/null
+++ b/package/iw/patches/100-survey_freq_in_use.patch
@@ -0,0 +1,11 @@
+--- a/survey.c
++++ b/survey.c
+@@ -46,6 +46,8 @@ static int print_survey_handler(struct n
+ if (sinfo[NL80211_SURVEY_INFO_FREQUENCY])
+ printf("\tfrequency:\t%u MHz\n",
+ nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]));
++ if (sinfo[NL80211_SURVEY_INFO_IN_USE])
++ printf("\tin use\n");
+ if (sinfo[NL80211_SURVEY_INFO_NOISE])
+ printf("\tnoise:\t\t%d dBm\n",
+ (int8_t)nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]));