aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-10-23 13:33:14 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-10-23 13:33:14 +0000
commitc405ee2be7f3bfe661cd3964758ef51a5cfe1b71 (patch)
tree56d0228f104fc7442620a2e5eb8651c5ed3560e9 /package
parent1fc910862211b857e81c50adf890d26a4e90dbe2 (diff)
downloadmaster-187ad058-c405ee2be7f3bfe661cd3964758ef51a5cfe1b71.tar.gz
master-187ad058-c405ee2be7f3bfe661cd3964758ef51a5cfe1b71.tar.bz2
master-187ad058-c405ee2be7f3bfe661cd3964758ef51a5cfe1b71.zip
ath10k: fix survey output channel in-use flag
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43033 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/kernel/mac80211/patches/343-ath10k-add-SURVEY_INFO_IN_USE-for-current-channel-on.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/package/kernel/mac80211/patches/343-ath10k-add-SURVEY_INFO_IN_USE-for-current-channel-on.patch b/package/kernel/mac80211/patches/343-ath10k-add-SURVEY_INFO_IN_USE-for-current-channel-on.patch
new file mode 100644
index 0000000000..a9cba1d5ea
--- /dev/null
+++ b/package/kernel/mac80211/patches/343-ath10k-add-SURVEY_INFO_IN_USE-for-current-channel-on.patch
@@ -0,0 +1,19 @@
+From: Felix Fietkau <nbd@openwrt.org>
+Date: Wed, 22 Oct 2014 18:44:03 +0200
+Subject: [PATCH] ath10k: add SURVEY_INFO_IN_USE for current channel on survey
+
+Signed-off-by: Felix Fietkau <nbd@openwrt.org>
+---
+
+--- a/drivers/net/wireless/ath/ath10k/mac.c
++++ b/drivers/net/wireless/ath/ath10k/mac.c
+@@ -3975,6 +3975,9 @@ static int ath10k_get_survey(struct ieee
+
+ survey->channel = &sband->channels[idx];
+
++ if (ar->rx_channel == survey->channel)
++ survey->filled |= SURVEY_INFO_IN_USE;
++
+ exit:
+ mutex_unlock(&ar->conf_mutex);
+ return ret;