diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/main.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index 366912f16ff..93fbe6f4089 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
@@ -273,7 +273,7 @@ static bool ath_complete_reset(struct ath_softc *sc, bool start) | |||
273 | 273 | ||
274 | ath9k_cmn_update_txpow(ah, sc->curtxpow, | 274 | ath9k_cmn_update_txpow(ah, sc->curtxpow, |
275 | sc->config.txpowlimit, &sc->curtxpow); | 275 | sc->config.txpowlimit, &sc->curtxpow); |
276 | ath9k_hw_set_interrupts(ah, ah->imask); | 276 | ath9k_hw_set_interrupts(ah); |
277 | ath9k_hw_enable_interrupts(ah); | 277 | ath9k_hw_enable_interrupts(ah); |
278 | 278 | ||
279 | if (!(sc->sc_flags & (SC_OP_OFFCHANNEL)) && start) { | 279 | if (!(sc->sc_flags & (SC_OP_OFFCHANNEL)) && start) { |
@@ -833,7 +833,7 @@ irqreturn_t ath_isr(int irq, void *dev) | |||
833 | 833 | ||
834 | if (status & ATH9K_INT_RXEOL) { | 834 | if (status & ATH9K_INT_RXEOL) { |
835 | ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN); | 835 | ah->imask &= ~(ATH9K_INT_RXEOL | ATH9K_INT_RXORN); |
836 | ath9k_hw_set_interrupts(ah, ah->imask); | 836 | ath9k_hw_set_interrupts(ah); |
837 | } | 837 | } |
838 | 838 | ||
839 | if (status & ATH9K_INT_MIB) { | 839 | if (status & ATH9K_INT_MIB) { |
@@ -1409,7 +1409,7 @@ static void ath9k_calculate_summary_state(struct ieee80211_hw *hw, | |||
1409 | ah->imask &= ~ATH9K_INT_TSFOOR; | 1409 | ah->imask &= ~ATH9K_INT_TSFOOR; |
1410 | } | 1410 | } |
1411 | 1411 | ||
1412 | ath9k_hw_set_interrupts(ah, ah->imask); | 1412 | ath9k_hw_set_interrupts(ah); |
1413 | 1413 | ||
1414 | /* Set up ANI */ | 1414 | /* Set up ANI */ |
1415 | if (iter_data.naps > 0) { | 1415 | if (iter_data.naps > 0) { |
@@ -1584,7 +1584,7 @@ static void ath9k_enable_ps(struct ath_softc *sc) | |||
1584 | if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) { | 1584 | if (!(ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) { |
1585 | if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) { | 1585 | if ((ah->imask & ATH9K_INT_TIM_TIMER) == 0) { |
1586 | ah->imask |= ATH9K_INT_TIM_TIMER; | 1586 | ah->imask |= ATH9K_INT_TIM_TIMER; |
1587 | ath9k_hw_set_interrupts(ah, ah->imask); | 1587 | ath9k_hw_set_interrupts(ah); |
1588 | } | 1588 | } |
1589 | ath9k_hw_setrxabort(ah, 1); | 1589 | ath9k_hw_setrxabort(ah, 1); |
1590 | } | 1590 | } |
@@ -1604,7 +1604,7 @@ static void ath9k_disable_ps(struct ath_softc *sc) | |||
1604 | PS_WAIT_FOR_TX_ACK); | 1604 | PS_WAIT_FOR_TX_ACK); |
1605 | if (ah->imask & ATH9K_INT_TIM_TIMER) { | 1605 | if (ah->imask & ATH9K_INT_TIM_TIMER) { |
1606 | ah->imask &= ~ATH9K_INT_TIM_TIMER; | 1606 | ah->imask &= ~ATH9K_INT_TIM_TIMER; |
1607 | ath9k_hw_set_interrupts(ah, ah->imask); | 1607 | ath9k_hw_set_interrupts(ah); |
1608 | } | 1608 | } |
1609 | } | 1609 | } |
1610 | 1610 | ||