1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 16:45:31 +03:00
openwrt-xburst/package/mac80211/patches/540-ath9k_rx_stop.patch
nbd 99a41c0ace ath9k: fold patches that were merged upstream into 300-pending_work.patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27860 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-08-01 12:15:15 +00:00

14 lines
471 B
Diff

--- 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;
}