mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
rndis_wlan: add missing range check for power_output modparam
Range check for power_output were missing. Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
135a5484c3
commit
a762483726
@ -2470,6 +2470,11 @@ static int bcm4320_early_init(struct usbnet *dev)
|
||||
else if (priv->param_power_save > 2)
|
||||
priv->param_power_save = 2;
|
||||
|
||||
if (priv->param_power_output < 0)
|
||||
priv->param_power_output = 0;
|
||||
else if (priv->param_power_output > 3)
|
||||
priv->param_power_output = 3;
|
||||
|
||||
if (priv->param_roamtrigger < -80)
|
||||
priv->param_roamtrigger = -80;
|
||||
else if (priv->param_roamtrigger > -60)
|
||||
|
Loading…
Reference in New Issue
Block a user