You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
469 B
12 lines
469 B
--- 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) &&
|
|
|