summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/544-ath9k_fix_ar9287_mac_clock.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/544-ath9k_fix_ar9287_mac_clock.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/544-ath9k_fix_ar9287_mac_clock.patch')
-rw-r--r--package/mac80211/patches/544-ath9k_fix_ar9287_mac_clock.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/package/mac80211/patches/544-ath9k_fix_ar9287_mac_clock.patch b/package/mac80211/patches/544-ath9k_fix_ar9287_mac_clock.patch
deleted file mode 100644
index f749f1d62..000000000
--- a/package/mac80211/patches/544-ath9k_fix_ar9287_mac_clock.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/drivers/net/wireless/ath/ath9k/hw.c
-+++ b/drivers/net/wireless/ath/ath9k/hw.c
-@@ -88,7 +88,10 @@ static void ath9k_hw_set_clockrate(struc
- struct ath_common *common = ath9k_hw_common(ah);
- unsigned int clockrate;
-
-- if (!ah->curchan) /* should really check for CCK instead */
-+ /* AR9287 v1.3+ uses async FIFO and runs the MAC at 117 MHz */
-+ if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah))
-+ clockrate = 117;
-+ else if (!ah->curchan) /* should really check for CCK instead */
- clockrate = ATH9K_CLOCK_RATE_CCK;
- else if (conf->channel->band == IEEE80211_BAND_2GHZ)
- clockrate = ATH9K_CLOCK_RATE_2GHZ_OFDM;