aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-10-17 13:56:19 +0200
committerBen Hutchings <ben@decadent.org.uk>2012-11-16 16:46:53 +0000
commitc54acd7da1a73f24ceb15c0edc92a5f8d3b09b23 (patch)
tree8a23ef2e1117d200441de29b94c95cda726cc07c /net/wireless
parent5a7b9047f5512e10e6ef89cd36e5b572bf13f60e (diff)
downloadkernel_samsung_smdk4412-c54acd7da1a73f24ceb15c0edc92a5f8d3b09b23.zip
kernel_samsung_smdk4412-c54acd7da1a73f24ceb15c0edc92a5f8d3b09b23.tar.gz
kernel_samsung_smdk4412-c54acd7da1a73f24ceb15c0edc92a5f8d3b09b23.tar.bz2
cfg80211: fix antenna gain handling
commit c4a9fafc77a5318f5ed26c509bbcddf03e18c201 upstream. No driver initializes chan->max_antenna_gain to something sensible, and the only place where it is being used right now is inside ath9k. This leads to ath9k potentially using less tx power than it can use, which can decrease performance/range in some rare cases. Rather than going through every single driver, this patch initializes chan->orig_mag in wiphy_register(), ignoring whatever value the driver left in there. If a driver for some reason wishes to limit it independent from regulatory rulesets, it can do so internally. Signed-off-by: Felix Fietkau <nbd@openwrt.org> Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'net/wireless')
-rw-r--r--net/wireless/core.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/wireless/core.c b/net/wireless/core.c
index 8f5042d..ea93f4b 100644
--- a/net/wireless/core.c
+++ b/net/wireless/core.c
@@ -548,8 +548,7 @@ int wiphy_register(struct wiphy *wiphy)
for (i = 0; i < sband->n_channels; i++) {
sband->channels[i].orig_flags =
sband->channels[i].flags;
- sband->channels[i].orig_mag =
- sband->channels[i].max_antenna_gain;
+ sband->channels[i].orig_mag = INT_MAX;
sband->channels[i].orig_mpwr =
sband->channels[i].max_power;
sband->channels[i].band = band;