diff options
author | Johannes Berg <johannes.berg@intel.com> | 2014-11-13 13:23:53 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-12-15 14:27:02 +0300 |
commit | 4bcc56bb3a9622e877772598d1cac124266b2b8a (patch) | |
tree | ee319c7130f7685618e5b23df58887dbf98ea500 /net/mac80211/cfg.c | |
parent | 5cf16616e152dd5c274a65954c77f64892d025a8 (diff) | |
download | linux-4bcc56bb3a9622e877772598d1cac124266b2b8a.tar.xz |
mac80211: ask driver to look at power level when starting AP
The power level might have been set, but as the interface was idle
it might not have taken effect yet. Ask the driver to check the
power level when starting up an AP so that in this case the correct
power level is used in case the device/driver can only set it when
the interface is actually active.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/cfg.c')
-rw-r--r-- | net/mac80211/cfg.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index e75d5c53e97b..169665835b6c 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c @@ -678,7 +678,8 @@ static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev, BSS_CHANGED_BEACON_ENABLED | BSS_CHANGED_BEACON | BSS_CHANGED_SSID | - BSS_CHANGED_P2P_PS; + BSS_CHANGED_P2P_PS | + BSS_CHANGED_TXPOWER; int err; old = sdata_dereference(sdata->u.ap.beacon, sdata); |