summaryrefslogtreecommitdiff
path: root/package/mac80211/patches/590-mac80211_cur_txpower.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-07-26 20:53:40 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-07-26 20:53:40 +0000
commitd6431df9c1c19e5b1f4f387e36c8f1825bce3b8f (patch)
tree14d5ac10f0920b0d737dc1dd67176d3592ded7ea /package/mac80211/patches/590-mac80211_cur_txpower.patch
parent4da138d899ccd83869547b6454ce9297841caaa8 (diff)
downloadmtk-20170518-d6431df9c1c19e5b1f4f387e36c8f1825bce3b8f.zip
mtk-20170518-d6431df9c1c19e5b1f4f387e36c8f1825bce3b8f.tar.gz
mtk-20170518-d6431df9c1c19e5b1f4f387e36c8f1825bce3b8f.tar.bz2
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/590-mac80211_cur_txpower.patch')
-rw-r--r--package/mac80211/patches/590-mac80211_cur_txpower.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/package/mac80211/patches/590-mac80211_cur_txpower.patch b/package/mac80211/patches/590-mac80211_cur_txpower.patch
new file mode 100644
index 0000000..8e729c1
--- /dev/null
+++ b/package/mac80211/patches/590-mac80211_cur_txpower.patch
@@ -0,0 +1,32 @@
+--- a/include/net/mac80211.h
++++ b/include/net/mac80211.h
+@@ -779,7 +779,7 @@ enum ieee80211_smps_mode {
+ */
+ struct ieee80211_conf {
+ u32 flags;
+- int power_level, dynamic_ps_timeout;
++ int cur_power_level, power_level, dynamic_ps_timeout;
+ int max_sleep_period;
+
+ u16 listen_interval;
+--- a/net/mac80211/cfg.c
++++ b/net/mac80211/cfg.c
+@@ -1524,7 +1524,7 @@ static int ieee80211_get_tx_power(struct
+ {
+ struct ieee80211_local *local = wiphy_priv(wiphy);
+
+- *dbm = local->hw.conf.power_level;
++ *dbm = local->hw.conf.cur_power_level;
+
+ return 0;
+ }
+--- a/net/mac80211/main.c
++++ b/net/mac80211/main.c
+@@ -210,6 +210,7 @@ int ieee80211_hw_config(struct ieee80211
+
+ if (local->hw.conf.power_level != power) {
+ changed |= IEEE80211_CONF_CHANGE_POWER;
++ local->hw.conf.cur_power_level = power;
+ local->hw.conf.power_level = power;
+ }
+