aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/571-ath9k_fix_adhoc_nexttbtt.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-05-31 23:07:29 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-05-31 23:07:29 +0000
commit41a169115b56cee08ba5ac0c85275c91b3193830 (patch)
tree1ffea61d08109f2e715cc106b9501c4628a366fb /package/mac80211/patches/571-ath9k_fix_adhoc_nexttbtt.patch
parent33fdc21d40a34383418958d2a6842b187e2897a6 (diff)
downloadupstream-41a169115b56cee08ba5ac0c85275c91b3193830.tar.gz
upstream-41a169115b56cee08ba5ac0c85275c91b3193830.tar.bz2
upstream-41a169115b56cee08ba5ac0c85275c91b3193830.zip
mac80211: update to wireless-testing 2011-05-27
SVN-Revision: 27071
Diffstat (limited to 'package/mac80211/patches/571-ath9k_fix_adhoc_nexttbtt.patch')
-rw-r--r--package/mac80211/patches/571-ath9k_fix_adhoc_nexttbtt.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/package/mac80211/patches/571-ath9k_fix_adhoc_nexttbtt.patch b/package/mac80211/patches/571-ath9k_fix_adhoc_nexttbtt.patch
deleted file mode 100644
index 544c7a9c9f..0000000000
--- a/package/mac80211/patches/571-ath9k_fix_adhoc_nexttbtt.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- 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,