Skip to content

Commit

Permalink
r8152: Check for supported Wake-on-LAN Modes
Browse files Browse the repository at this point in the history
The driver does not check for Wake-on-LAN modes specified by an user,
but will conditionally set the device as wake-up enabled or not based on
that, which could be a very confusing user experience.

Fixes: 21ff2e8 ("r8152: support WOL")
Signed-off-by: Florian Fainelli <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
ffainelli authored and davem330 committed Sep 29, 2018
1 parent c5cb93e commit f2750df
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/net/usb/r8152.c
Original file line number Diff line number Diff line change
Expand Up @@ -4506,6 +4506,9 @@ static int rtl8152_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
if (!rtl_can_wakeup(tp))
return -EOPNOTSUPP;

if (wol->wolopts & ~WAKE_ANY)
return -EINVAL;

ret = usb_autopm_get_interface(tp->intf);
if (ret < 0)
goto out_set_wol;
Expand Down

0 comments on commit f2750df

Please sign in to comment.