diff options
author | Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com> | 2011-07-18 04:53:30 -0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2011-08-09 12:45:21 -0400 |
commit | 7520ceb724808929ee03b84b62cff0c46622d335 (patch) | |
tree | 6bb43723ac614516132da8fc2b21d60cf013f201 /drivers/net/wireless/ath/ath6kl | |
parent | 50745af7ebb38d3f8f2487f92db6c59c13dc0b89 (diff) |
ath6kl: Bypass reading irq status based on chk_irq_status_cnt
This is a regression.
Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/htc_hif.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/htc_hif.c b/drivers/net/wireless/ath/ath6kl/htc_hif.c index 9904beee55c1..7ab40c1d3157 100644 --- a/drivers/net/wireless/ath/ath6kl/htc_hif.c +++ b/drivers/net/wireless/ath/ath6kl/htc_hif.c | |||
@@ -469,7 +469,8 @@ out: | |||
469 | ath6kl_dbg(ATH6KL_DBG_IRQ, | 469 | ath6kl_dbg(ATH6KL_DBG_IRQ, |
470 | "bypassing irq status re-check, forcing done\n"); | 470 | "bypassing irq status re-check, forcing done\n"); |
471 | 471 | ||
472 | *done = true; | 472 | if (!dev->chk_irq_status_cnt) |
473 | *done = true; | ||
473 | 474 | ||
474 | ath6kl_dbg(ATH6KL_DBG_IRQ, | 475 | ath6kl_dbg(ATH6KL_DBG_IRQ, |
475 | "proc_pending_irqs: (done:%d, status=%d\n", *done, status); | 476 | "proc_pending_irqs: (done:%d, status=%d\n", *done, status); |