mirror of https://gitee.com/openkylin/linux.git
cfg80211: default to regulatory max power for channel
If the driver does not specify a maximum power output, default to the regulatory max. Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
d59f720d88
commit
253898c417
|
@ -136,7 +136,10 @@ static void handle_channel(struct ieee80211_channel *chan,
|
||||||
chan->flags = flags;
|
chan->flags = flags;
|
||||||
chan->max_antenna_gain = min(chan->orig_mag,
|
chan->max_antenna_gain = min(chan->orig_mag,
|
||||||
rg->max_antenna_gain);
|
rg->max_antenna_gain);
|
||||||
chan->max_power = min(chan->orig_mpwr, rg->max_power);
|
if (chan->orig_mpwr)
|
||||||
|
chan->max_power = min(chan->orig_mpwr, rg->max_power);
|
||||||
|
else
|
||||||
|
chan->max_power = rg->max_power;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handle_band(struct ieee80211_supported_band *sband,
|
static void handle_band(struct ieee80211_supported_band *sband,
|
||||||
|
|
Loading…
Reference in New Issue