Commit 3b580144 authored by Felix Fietkau's avatar Felix Fietkau Committed by John W. Linville

ath9k: fix processing RXORN interrupts

The "goto chip_reset" is a bit misleading, because it does not actually
issue a chip reset. Instead it is bypassing processing of other
interrupts and assumes that the tasklet will issue a chip reset.

In the case of RXORN this does not happen, so bypassing processing of
other interrupts will simply allow them to fire again. Even if RXORN
was triggering a reset, it is not critical enough to need the bypass
here.
Signed-off-by: default avatarFelix Fietkau <nbd@openwrt.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 257b5bc6
...@@ -545,11 +545,10 @@ irqreturn_t ath_isr(int irq, void *dev) ...@@ -545,11 +545,10 @@ irqreturn_t ath_isr(int irq, void *dev)
sched = true; sched = true;
/* /*
* If a FATAL or RXORN interrupt is received, we have to reset the * If a FATAL interrupt is received, we have to reset the chip
* chip immediately. * immediately.
*/ */
if ((status & ATH9K_INT_FATAL) || ((status & ATH9K_INT_RXORN) && if (status & ATH9K_INT_FATAL)
!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)))
goto chip_reset; goto chip_reset;
if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) && if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment