summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/540-ath9k_rx_stop.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-08-01 12:15:15 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-08-01 12:15:15 +0000
commita1e19186fa70e8bc918d825e31a50259ea8082fd (patch)
tree7e08fcb20003dd62c1286426a50e8504e081e5db /package/mac80211/patches/540-ath9k_rx_stop.patch
parent478decc60bb34144cc60b61c27378d8b0a0dce9b (diff)
downloadmaster-31e0f0ae-a1e19186fa70e8bc918d825e31a50259ea8082fd.tar.gz
master-31e0f0ae-a1e19186fa70e8bc918d825e31a50259ea8082fd.tar.bz2
master-31e0f0ae-a1e19186fa70e8bc918d825e31a50259ea8082fd.zip
ath9k: fold patches that were merged upstream into 300-pending_work.patch
SVN-Revision: 27860
Diffstat (limited to 'package/mac80211/patches/540-ath9k_rx_stop.patch')
-rw-r--r--package/mac80211/patches/540-ath9k_rx_stop.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/package/mac80211/patches/540-ath9k_rx_stop.patch b/package/mac80211/patches/540-ath9k_rx_stop.patch
new file mode 100644
index 0000000000..17c4c28e42
--- /dev/null
+++ b/package/mac80211/patches/540-ath9k_rx_stop.patch
@@ -0,0 +1,13 @@
+--- a/drivers/net/wireless/ath/ath9k/mac.c
++++ b/drivers/net/wireless/ath/ath9k/mac.c
+@@ -737,7 +737,9 @@ bool ath9k_hw_stopdmarecv(struct ath_hw
+
+ if (!AR_SREV_9300_20_OR_LATER(ah)) {
+ mac_status = REG_READ(ah, AR_DMADBG_7) & 0x7f0;
+- if (mac_status == 0x1c0 && mac_status == last_mac_status) {
++ if (mac_status == last_mac_status &&
++ (mac_status == 0x1c0 ||
++ (AR_SREV_9100(ah) && mac_status == 0x020))) {
+ *reset = true;
+ break;
+ }