diff options
| author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-09-04 19:06:02 +0000 | 
|---|---|---|
| committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-09-04 19:06:02 +0000 | 
| commit | 4b62fffaa5b2d2185cac8bfa0ca9e8d8e825bb1a (patch) | |
| tree | e33d549f633744e4abc7d6df82f9e1f4fd1fa7b9 | |
| parent | 3c4461a2c9e1a31227ec6a9a7e48e63f437ab182 (diff) | |
ath9k: fix beacon timer init on reset
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28169 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | package/mac80211/patches/585-ath9k_fix_beacon_timer.patch | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/package/mac80211/patches/585-ath9k_fix_beacon_timer.patch b/package/mac80211/patches/585-ath9k_fix_beacon_timer.patch new file mode 100644 index 000000000..e1fe4b75d --- /dev/null +++ b/package/mac80211/patches/585-ath9k_fix_beacon_timer.patch @@ -0,0 +1,11 @@ +--- a/drivers/net/wireless/ath/ath9k/beacon.c ++++ b/drivers/net/wireless/ath/ath9k/beacon.c +@@ -505,7 +505,7 @@ static void ath_beacon_config_ap(struct  + 	/* NB: the beacon interval is kept internally in TU's */ + 	intval = TU_TO_USEC(conf->beacon_interval); + 	intval /= ATH_BCBUF;    /* for staggered beacons */ +-	nexttbtt = intval; ++	nexttbtt = roundup(ath9k_hw_gettsf32(ah) + TU_TO_USEC(FUDGE), intval); +  + 	/* + 	 * In AP mode we enable the beacon timers and SWBA interrupts to | 
