diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-01-09 15:16:52 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-01-09 15:16:52 +0000 |
commit | 52b030cf1677c3d46ddd44117d41aa2bda5d1437 (patch) | |
tree | e9e3208ca6b3d2b742d590c52f2dd09ec95dd532 /package/mac80211/patches | |
parent | ddbb25c6a79a0836a79eab96d9c0a293acee4089 (diff) | |
download | upstream-52b030cf1677c3d46ddd44117d41aa2bda5d1437.tar.gz upstream-52b030cf1677c3d46ddd44117d41aa2bda5d1437.tar.bz2 upstream-52b030cf1677c3d46ddd44117d41aa2bda5d1437.zip |
ath9k: correct a logic error in the rx path fix
SVN-Revision: 35067
Diffstat (limited to 'package/mac80211/patches')
-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 d576990e30..b47878b180 100644 --- a/package/mac80211/patches/300-pending_work.patch +++ b/package/mac80211/patches/300-pending_work.patch @@ -451,7 +451,7 @@ } requeue: + list_add_tail(&bf->list, &sc->rx.rxbuf); -+ if (!flush) ++ if (flush) + continue; + if (edma) { |