summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/540-ath9k_rx_stop.patch
blob: 17c4c28e42a0ff0adea32be1148ebf5287d243c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
 			}