mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
Merge "net: Zeroing the structure ethtool_wolinfo in ethtool_get_wol()"
This commit is contained in:
commit
e616d5738d
1 changed files with 3 additions and 1 deletions
|
@ -711,11 +711,13 @@ static int ethtool_reset(struct net_device *dev, char __user *useraddr)
|
|||
|
||||
static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
|
||||
{
|
||||
struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
|
||||
struct ethtool_wolinfo wol;
|
||||
|
||||
if (!dev->ethtool_ops->get_wol)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
memset(&wol, 0, sizeof(struct ethtool_wolinfo));
|
||||
wol.cmd = ETHTOOL_GWOL;
|
||||
dev->ethtool_ops->get_wol(dev, &wol);
|
||||
|
||||
if (copy_to_user(useraddr, &wol, sizeof(wol)))
|
||||
|
|
Loading…
Reference in a new issue