diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-07-01 04:04:54 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-07-01 04:04:54 +0000 |
commit | d8ccfa950f67e082e6506797b8cc8136b6d5c57b (patch) | |
tree | b7b597c521fbbc6bbc6a32a914964f6889d9c1f4 /package | |
parent | afd6c75cf1649b36ed1bc28e1599a3d393b04146 (diff) | |
download | upstream-d8ccfa950f67e082e6506797b8cc8136b6d5c57b.tar.gz upstream-d8ccfa950f67e082e6506797b8cc8136b6d5c57b.tar.bz2 upstream-d8ccfa950f67e082e6506797b8cc8136b6d5c57b.zip |
ath5k: disable tx power gain correction probing for hardware that does not need or support it
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27324 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/mac80211/patches/440-ath5k_calibrate_srev_checks.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/mac80211/patches/440-ath5k_calibrate_srev_checks.patch b/package/mac80211/patches/440-ath5k_calibrate_srev_checks.patch new file mode 100644 index 0000000000..cbfdad405b --- /dev/null +++ b/package/mac80211/patches/440-ath5k_calibrate_srev_checks.patch @@ -0,0 +1,20 @@ +--- a/drivers/net/wireless/ath/ath5k/phy.c ++++ b/drivers/net/wireless/ath/ath5k/phy.c +@@ -1604,11 +1604,13 @@ int ath5k_hw_phy_calibrate(struct ath5k_ + int ret; + + if (ah->ah_radio == AR5K_RF5110) +- ret = ath5k_hw_rf5110_calibrate(ah, channel); +- else { +- ret = ath5k_hw_rf511x_iq_calibrate(ah); ++ return ath5k_hw_rf5110_calibrate(ah, channel); ++ ++ ret = ath5k_hw_rf511x_iq_calibrate(ah); ++ ++ if (ah->ah_radio == AR5K_RF5112 && ++ (channel->hw_value & (CHANNEL_5GHZ | CHANNEL_OFDM))) + ath5k_hw_request_rfgain_probe(ah); +- } + + return ret; + } |