summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/543-ath9k_fix_mac_clock_div.patch
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-08-01 12:15:15 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-08-01 12:15:15 +0000
commit99a41c0ace85fce0efca7bedd39d0c88429fdc12 (patch)
tree88aa050ff0bbb96dbd78955e42fcc1b26ee5c800 /package/mac80211/patches/543-ath9k_fix_mac_clock_div.patch
parent4371be6c65c16464d42c70ebabc476f036618166 (diff)
ath9k: fold patches that were merged upstream into 300-pending_work.patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27860 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/patches/543-ath9k_fix_mac_clock_div.patch')
-rw-r--r--package/mac80211/patches/543-ath9k_fix_mac_clock_div.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/package/mac80211/patches/543-ath9k_fix_mac_clock_div.patch b/package/mac80211/patches/543-ath9k_fix_mac_clock_div.patch
deleted file mode 100644
index f76c54229..000000000
--- a/package/mac80211/patches/543-ath9k_fix_mac_clock_div.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/drivers/net/wireless/ath/ath9k/hw.c
-+++ b/drivers/net/wireless/ath/ath9k/hw.c
-@@ -100,6 +100,13 @@ static void ath9k_hw_set_clockrate(struc
- if (conf_is_ht40(conf))
- clockrate *= 2;
-
-+ if (ah->curchan) {
-+ if (IS_CHAN_HALF_RATE(ah->curchan))
-+ clockrate /= 2;
-+ if (IS_CHAN_QUARTER_RATE(ah->curchan))
-+ clockrate /= 4;
-+ }
-+
- common->clockrate = clockrate;
- }
-