diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-09-04 19:06:02 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-09-04 19:06:02 +0000 |
commit | 2a745a7d5433bbac79cafd1a348efab8ee9ab228 (patch) | |
tree | 92f7f35698e5afbbe512facc2e95e115fcc4979d /package/mac80211/patches | |
parent | a84e64e4321eaca68651438648b8ba43ffc66448 (diff) | |
download | upstream-2a745a7d5433bbac79cafd1a348efab8ee9ab228.tar.gz upstream-2a745a7d5433bbac79cafd1a348efab8ee9ab228.tar.bz2 upstream-2a745a7d5433bbac79cafd1a348efab8ee9ab228.zip |
ath9k: fix beacon timer init on reset
SVN-Revision: 28169
Diffstat (limited to 'package/mac80211/patches')
-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 0000000000..e1fe4b75db --- /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 |