From: nbd Date: Tue, 17 May 2011 08:37:38 +0000 (+0000) Subject: ath9k: fix ad-hoc nexttbtt calculation, which broke beacon transmission in some instances X-Git-Tag: fast2504n-3.10.28-merged~8889 X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=1bb8660d89a2309bafce0b6cc36abc7303bfb0c2;p=openwrt.git ath9k: fix ad-hoc nexttbtt calculation, which broke beacon transmission in some instances git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26915 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/mac80211/patches/571-ath9k_fix_adhoc_nexttbtt.patch b/package/mac80211/patches/571-ath9k_fix_adhoc_nexttbtt.patch new file mode 100644 index 0000000000..544c7a9c9f --- /dev/null +++ b/package/mac80211/patches/571-ath9k_fix_adhoc_nexttbtt.patch @@ -0,0 +1,11 @@ +--- a/drivers/net/wireless/ath/ath9k/beacon.c ++++ b/drivers/net/wireless/ath/ath9k/beacon.c +@@ -654,7 +654,7 @@ static void ath_beacon_config_adhoc(stru + delta = (tsf - sc->beacon.bc_tstamp); + else + delta = (tsf + 1 + (~0U - sc->beacon.bc_tstamp)); +- nexttbtt = tsf + roundup(delta, intval); ++ nexttbtt = tsf + intval - (delta % intval); + } + + ath_dbg(common, ATH_DBG_BEACON,