diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-07-26 20:53:40 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-07-26 20:53:40 +0000 |
commit | d6431df9c1c19e5b1f4f387e36c8f1825bce3b8f (patch) | |
tree | 14d5ac10f0920b0d737dc1dd67176d3592ded7ea /package/mac80211/patches/591-ath9k_initialize_chainmask.patch | |
parent | 4da138d899ccd83869547b6454ce9297841caaa8 (diff) | |
download | upstream-d6431df9c1c19e5b1f4f387e36c8f1825bce3b8f.tar.gz upstream-d6431df9c1c19e5b1f4f387e36c8f1825bce3b8f.tar.bz2 upstream-d6431df9c1c19e5b1f4f387e36c8f1825bce3b8f.zip |
ath9k: rework tx power handling - display the correct *current* tx power, and also fix tx power limits with ATH_USER_REGD set
SVN-Revision: 27788
Diffstat (limited to 'package/mac80211/patches/591-ath9k_initialize_chainmask.patch')
-rw-r--r-- | package/mac80211/patches/591-ath9k_initialize_chainmask.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/package/mac80211/patches/591-ath9k_initialize_chainmask.patch b/package/mac80211/patches/591-ath9k_initialize_chainmask.patch new file mode 100644 index 0000000000..03f7c36a35 --- /dev/null +++ b/package/mac80211/patches/591-ath9k_initialize_chainmask.patch @@ -0,0 +1,13 @@ +--- a/drivers/net/wireless/ath/ath9k/init.c ++++ b/drivers/net/wireless/ath/ath9k/init.c +@@ -667,8 +667,10 @@ static void ath9k_init_band_txpower(stru + static void ath9k_init_txpower_limits(struct ath_softc *sc) + { + struct ath_hw *ah = sc->sc_ah; ++ struct ath_common *common = ath9k_hw_common(sc->sc_ah); + struct ath9k_channel *curchan = ah->curchan; + ++ ah->txchainmask = common->tx_chainmask; + if (ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ) + ath9k_init_band_txpower(sc, IEEE80211_BAND_2GHZ); + if (ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ) |