ath9k: fix enabling SWBA interrupts
SVN-Revision: 23870
This commit is contained in:
parent
a85e3d60c5
commit
8886f1bb8a
1 changed files with 20 additions and 0 deletions
20
package/mac80211/patches/591-ath9k_swba_intr_fix.patch
Normal file
20
package/mac80211/patches/591-ath9k_swba_intr_fix.patch
Normal file
|
@ -0,0 +1,20 @@
|
|||
--- a/drivers/net/wireless/ath/ath9k/beacon.c
|
||||
+++ b/drivers/net/wireless/ath/ath9k/beacon.c
|
||||
@@ -506,7 +506,7 @@ static void ath_beacon_config_ap(struct
|
||||
ath9k_hw_disable_interrupts(ah);
|
||||
ath9k_beacon_init(sc, nexttbtt, intval);
|
||||
sc->beacon.bmisscnt = 0;
|
||||
- ath9k_hw_enable_interrupts(ah);
|
||||
+ ath9k_hw_set_interrupts(ah, ah->imask);
|
||||
|
||||
/* Clear the reset TSF flag, so that subsequent beacon updation
|
||||
will not reset the HW TSF. */
|
||||
@@ -689,7 +689,7 @@ static void ath_beacon_config_adhoc(stru
|
||||
ath9k_hw_disable_interrupts(ah);
|
||||
ath9k_beacon_init(sc, nexttbtt, intval);
|
||||
sc->beacon.bmisscnt = 0;
|
||||
- ath9k_hw_enable_interrupts(ah);
|
||||
+ ath9k_hw_set_interrupts(ah, ah->imask);
|
||||
}
|
||||
|
||||
void ath_beacon_config(struct ath_softc *sc, struct ieee80211_vif *vif)
|
Loading…
Reference in a new issue