Skip to content

Commit

Permalink
r8152: support nway_reset of ethtool
Browse files Browse the repository at this point in the history
Support the nway_reset() function for ethtool.

Signed-off-by: Hayes Wang <hayeswang@realtek.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
hayeswang authored and David S. Miller committed Oct 29, 2014
1 parent f37119c commit 8884f50
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions drivers/net/usb/r8152.c
Original file line number Diff line number Diff line change
Expand Up @@ -3558,11 +3558,33 @@ rtl_ethtool_set_eee(struct net_device *net, struct ethtool_eee *edata)
return ret;
}

static int rtl8152_nway_reset(struct net_device *dev)
{
struct r8152 *tp = netdev_priv(dev);
int ret;

ret = usb_autopm_get_interface(tp->intf);
if (ret < 0)
goto out;

mutex_lock(&tp->control);

ret = mii_nway_restart(&tp->mii);

mutex_unlock(&tp->control);

usb_autopm_put_interface(tp->intf);

out:
return ret;
}

static struct ethtool_ops ops = {
.get_drvinfo = rtl8152_get_drvinfo,
.get_settings = rtl8152_get_settings,
.set_settings = rtl8152_set_settings,
.get_link = ethtool_op_get_link,
.nway_reset = rtl8152_nway_reset,
.get_msglevel = rtl8152_get_msglevel,
.set_msglevel = rtl8152_set_msglevel,
.get_wol = rtl8152_get_wol,
Expand Down

0 comments on commit 8884f50

Please sign in to comment.