diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-04-17 23:58:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-04-17 23:58:16 +0000 |
commit | 3434500d35e79224dffad11eab709195f84446a4 (patch) | |
tree | 51ca59b1f489f5664f69e4b46cde9506a038a56a | |
parent | 33f6c63f2a3d5c8a672305d79e2219ddebf27639 (diff) | |
download | upstream-3434500d35e79224dffad11eab709195f84446a4.tar.gz upstream-3434500d35e79224dffad11eab709195f84446a4.tar.bz2 upstream-3434500d35e79224dffad11eab709195f84446a4.zip |
ath9k: improve reliability of the rx stuck fixup
SVN-Revision: 20967
-rw-r--r-- | package/mac80211/patches/550-ath9k_bb_fix.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/mac80211/patches/550-ath9k_bb_fix.patch b/package/mac80211/patches/550-ath9k_bb_fix.patch index 9c2594ce6e..13eccae7eb 100644 --- a/package/mac80211/patches/550-ath9k_bb_fix.patch +++ b/package/mac80211/patches/550-ath9k_bb_fix.patch @@ -15,8 +15,8 @@ + do { + reg = REG_READ(ah, AR_OBS_BUS_1); + -+ if ((reg & 0x7E7FFFEF) != 0x00702400) -+ return true; ++ if ((reg & 0x7E7FFFEF) == 0x00702400) ++ continue; + + switch (reg & 0x7E000B00) { + case 0x1E000000: |