diff options
author | Sujith Manoharan <c_manoha@qca.qualcomm.com> | 2012-02-22 02:11:59 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-02-27 14:06:39 -0500 |
commit | 9a15858f0cb9432e29db08dd936c39d20019a484 (patch) | |
tree | ddfe9c637485e5fb96e3ef6de8cd6237e7d0ca15 /drivers/net/wireless/ath/ath9k/gpio.c | |
parent | 64ab38df6e8ac8e56f38c49d26578fae2fb808f8 (diff) |
ath9k: Remove ATH9K_HW_CAP_MCI checks
With the ability to remove BTCOEX support at compile time,
these checks are no longer needed.
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/gpio.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/gpio.c b/drivers/net/wireless/ath/ath9k/gpio.c index 1f1a5c632152..63e4c4b1cb3d 100644 --- a/drivers/net/wireless/ath/ath9k/gpio.c +++ b/drivers/net/wireless/ath/ath9k/gpio.c | |||
@@ -333,7 +333,7 @@ void ath9k_btcoex_handle_interrupt(struct ath_softc *sc, u32 status) | |||
333 | if (status & ATH9K_INT_GENTIMER) | 333 | if (status & ATH9K_INT_GENTIMER) |
334 | ath_gen_timer_isr(sc->sc_ah); | 334 | ath_gen_timer_isr(sc->sc_ah); |
335 | 335 | ||
336 | if ((status & ATH9K_INT_MCI) && ATH9K_HW_CAP_MCI) | 336 | if (status & ATH9K_INT_MCI) |
337 | ath_mci_intr(sc); | 337 | ath_mci_intr(sc); |
338 | } | 338 | } |
339 | 339 | ||