aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-11-04 17:05:48 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-11-04 17:05:48 +0000
commit3717ede4b0f753107fcde01fbd045d771e62f273 (patch)
tree95ff295a393cb2ce5f6528d6819d03407a346db7 /package/mac80211
parent8700f34b1d79d9d02608b7ebcb2f0d7bdf964d8a (diff)
downloadmaster-187ad058-3717ede4b0f753107fcde01fbd045d771e62f273.tar.gz
master-187ad058-3717ede4b0f753107fcde01fbd045d771e62f273.tar.bz2
master-187ad058-3717ede4b0f753107fcde01fbd045d771e62f273.zip
ath9k: fix enabling SWBA interrupts
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23870 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211')
-rw-r--r--package/mac80211/patches/591-ath9k_swba_intr_fix.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/package/mac80211/patches/591-ath9k_swba_intr_fix.patch b/package/mac80211/patches/591-ath9k_swba_intr_fix.patch
new file mode 100644
index 0000000000..5bea9f90a1
--- /dev/null
+++ b/package/mac80211/patches/591-ath9k_swba_intr_fix.patch
@@ -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)