diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-06-05 23:33:57 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-06-05 23:33:57 +0000 |
commit | 551bf8f6971db6dd057645f1e415718bdd1d2eb4 (patch) | |
tree | d35c1957436d99a1be034b53455846f2febf414d /package/kernel/mac80211 | |
parent | c1f236cf7847399723b3884077159f8852b078b3 (diff) | |
download | master-187ad058-551bf8f6971db6dd057645f1e415718bdd1d2eb4.tar.gz master-187ad058-551bf8f6971db6dd057645f1e415718bdd1d2eb4.tar.bz2 master-187ad058-551bf8f6971db6dd057645f1e415718bdd1d2eb4.zip |
ath9k: add a fix for rx overrun processing
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41029 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel/mac80211')
-rw-r--r-- | package/kernel/mac80211/patches/563-ath9k_rxorn_intr_fix.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/kernel/mac80211/patches/563-ath9k_rxorn_intr_fix.patch b/package/kernel/mac80211/patches/563-ath9k_rxorn_intr_fix.patch new file mode 100644 index 0000000000..47a7d82904 --- /dev/null +++ b/package/kernel/mac80211/patches/563-ath9k_rxorn_intr_fix.patch @@ -0,0 +1,12 @@ +--- a/drivers/net/wireless/ath/ath9k/main.c ++++ b/drivers/net/wireless/ath/ath9k/main.c +@@ -628,8 +628,7 @@ irqreturn_t ath_isr(int irq, void *dev) + * If a FATAL or RXORN interrupt is received, we have to reset the + * chip immediately. + */ +- if ((status & ATH9K_INT_FATAL) || ((status & ATH9K_INT_RXORN) && +- !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA))) ++ if (status & ATH9K_INT_FATAL) + goto chip_reset; + + if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) && |