aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/mac80211/patches/303-ath9k-DFS-consider-ext_channel-pulses-only-in-HT40-m.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-07-22 12:45:03 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-07-22 12:45:03 +0000
commit13d546db7b9553626cd7c28a23d2e7aa7c80edc2 (patch)
tree9870131310293a7da3f6e12e266034bd28ce6090 /package/kernel/mac80211/patches/303-ath9k-DFS-consider-ext_channel-pulses-only-in-HT40-m.patch
parent25a97d400c00ab4ab144eb8df10e16b62e52c4f6 (diff)
downloadmaster-187ad058-13d546db7b9553626cd7c28a23d2e7aa7c80edc2.tar.gz
master-187ad058-13d546db7b9553626cd7c28a23d2e7aa7c80edc2.tar.bz2
master-187ad058-13d546db7b9553626cd7c28a23d2e7aa7c80edc2.zip
mac80211: update to wireless-testing 2015-07-21
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46436 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel/mac80211/patches/303-ath9k-DFS-consider-ext_channel-pulses-only-in-HT40-m.patch')
-rw-r--r--package/kernel/mac80211/patches/303-ath9k-DFS-consider-ext_channel-pulses-only-in-HT40-m.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/package/kernel/mac80211/patches/303-ath9k-DFS-consider-ext_channel-pulses-only-in-HT40-m.patch b/package/kernel/mac80211/patches/303-ath9k-DFS-consider-ext_channel-pulses-only-in-HT40-m.patch
deleted file mode 100644
index 07f5e3bc36..0000000000
--- a/package/kernel/mac80211/patches/303-ath9k-DFS-consider-ext_channel-pulses-only-in-HT40-m.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From: Zefir Kurtisi <zefir.kurtisi@neratec.com>
-Date: Tue, 16 Jun 2015 11:46:42 +0200
-Subject: [PATCH] ath9k: DFS - consider ext_channel pulses only in HT40
- mode
-
-The chip reports radar pulses on extension channel
-even if operating in HT20 mode. This patch adds a
-sanity check for HT40 mode before it feeds pulses
-on extension channel to the pattern detector.
-
-Signed-off-by: Zefir Kurtisi <zefir.kurtisi@neratec.com>
----
-
---- a/drivers/net/wireless/ath/ath9k/dfs.c
-+++ b/drivers/net/wireless/ath/ath9k/dfs.c
-@@ -198,7 +198,8 @@ void ath9k_dfs_process_phyerr(struct ath
- sc->dfs_prev_pulse_ts = pe.ts;
- if (ard.pulse_bw_info & PRI_CH_RADAR_FOUND)
- ath9k_dfs_process_radar_pulse(sc, &pe);
-- if (ard.pulse_bw_info & EXT_CH_RADAR_FOUND) {
-+ if (IS_CHAN_HT40(ah->curchan) &&
-+ ard.pulse_bw_info & EXT_CH_RADAR_FOUND) {
- pe.freq += IS_CHAN_HT40PLUS(ah->curchan) ? 20 : -20;
- ath9k_dfs_process_radar_pulse(sc, &pe);
- }