diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-04-14 22:46:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-04-14 22:46:12 +0000 |
commit | e0aa62e3c26dcfb33cc1a720b80d8e3dfa0cda92 (patch) | |
tree | 66f9c9ef5ea21936464e2f2ec035e721463b219c /package | |
parent | 79ecac89e64a7be874c36dbe78cc4ff0e301983c (diff) | |
download | upstream-e0aa62e3c26dcfb33cc1a720b80d8e3dfa0cda92.tar.gz upstream-e0aa62e3c26dcfb33cc1a720b80d8e3dfa0cda92.tar.bz2 upstream-e0aa62e3c26dcfb33cc1a720b80d8e3dfa0cda92.zip |
ath9k: fix resetting the hw during channel change when the MAC fails to go idle
SVN-Revision: 26665
Diffstat (limited to 'package')
-rw-r--r-- | package/mac80211/patches/300-pending_work.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mac80211/patches/300-pending_work.patch b/package/mac80211/patches/300-pending_work.patch index 74acba566e..982e233fb7 100644 --- a/package/mac80211/patches/300-pending_work.patch +++ b/package/mac80211/patches/300-pending_work.patch @@ -258,7 +258,7 @@ ATH_DBG_WARN_ON_ONCE(!stopped); } - return stopped; -+ return stopped || reset; ++ return stopped && !reset; } void ath_flushrecv(struct ath_softc *sc) |