summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/554-ath9k_test_txpower.patch
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-08-11 13:52:27 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-08-11 13:52:27 +0000
commit559f191cc256f9fc93405a74b0fb4dd9339424aa (patch)
tree3d6e1cf9fed773c35a5cfaec71f59a3633e80c7c /package/mac80211/patches/554-ath9k_test_txpower.patch
parenta91dd7628bcc9af0b9d4516ad6adc9817a750488 (diff)
mac80211: update to 2011-08-10
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27958 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/patches/554-ath9k_test_txpower.patch')
-rw-r--r--package/mac80211/patches/554-ath9k_test_txpower.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/package/mac80211/patches/554-ath9k_test_txpower.patch b/package/mac80211/patches/554-ath9k_test_txpower.patch
deleted file mode 100644
index 96131dc9d..000000000
--- a/package/mac80211/patches/554-ath9k_test_txpower.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- a/drivers/net/wireless/ath/ath9k/hw.c
-+++ b/drivers/net/wireless/ath/ath9k/hw.c
-@@ -2442,15 +2442,18 @@ void ath9k_hw_set_txpowerlimit(struct at
- struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
- struct ath9k_channel *chan = ah->curchan;
- struct ieee80211_channel *channel = chan->chan;
-+ int reg_pwr = min_t(int, MAX_RATE_POWER, regulatory->power_limit);
-+ int chan_pwr = channel->max_power * 2;
-+
-+ if (test)
-+ reg_pwr = chan_pwr = MAX_RATE_POWER;
-
- regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
-
- ah->eep_ops->set_txpower(ah, chan,
- ath9k_regd_get_ctl(regulatory, chan),
- channel->max_antenna_gain * 2,
-- channel->max_power * 2,
-- min((u32) MAX_RATE_POWER,
-- (u32) regulatory->power_limit), test);
-+ chan_pwr, reg_pwr, test);
- }
- EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
-