ath9k: add more fixes for half/quarter rate support
[openwrt/svn-archive/archive.git] / package / mac80211 / patches / 560-ath9k_rx_stop.patch
1 --- a/drivers/net/wireless/ath/ath9k/mac.c
2 +++ b/drivers/net/wireless/ath/ath9k/mac.c
3 @@ -737,7 +737,9 @@ bool ath9k_hw_stopdmarecv(struct ath_hw
4
5 if (!AR_SREV_9300_20_OR_LATER(ah)) {
6 mac_status = REG_READ(ah, AR_DMADBG_7) & 0x7f0;
7 - if (mac_status == 0x1c0 && mac_status == last_mac_status) {
8 + if (mac_status == last_mac_status &&
9 + (mac_status == 0x1c0 ||
10 + (AR_SREV_9100(ah) && mac_status == 0x020))) {
11 *reset = true;
12 break;
13 }