Commit eea16da8 authored by Florian Fainelli's avatar Florian Fainelli Committed by David S. Miller

net: usb: ax88172x: Utilize phy_ethtool_nway_reset

Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e3979ce9
...@@ -149,14 +149,6 @@ static const struct net_device_ops ax88172a_netdev_ops = { ...@@ -149,14 +149,6 @@ static const struct net_device_ops ax88172a_netdev_ops = {
.ndo_set_rx_mode = asix_set_multicast, .ndo_set_rx_mode = asix_set_multicast,
}; };
static int ax88172a_nway_reset(struct net_device *net)
{
if (!net->phydev)
return -ENODEV;
return phy_start_aneg(net->phydev);
}
static const struct ethtool_ops ax88172a_ethtool_ops = { static const struct ethtool_ops ax88172a_ethtool_ops = {
.get_drvinfo = asix_get_drvinfo, .get_drvinfo = asix_get_drvinfo,
.get_link = usbnet_get_link, .get_link = usbnet_get_link,
...@@ -167,7 +159,7 @@ static const struct ethtool_ops ax88172a_ethtool_ops = { ...@@ -167,7 +159,7 @@ static const struct ethtool_ops ax88172a_ethtool_ops = {
.get_eeprom_len = asix_get_eeprom_len, .get_eeprom_len = asix_get_eeprom_len,
.get_eeprom = asix_get_eeprom, .get_eeprom = asix_get_eeprom,
.set_eeprom = asix_set_eeprom, .set_eeprom = asix_set_eeprom,
.nway_reset = ax88172a_nway_reset, .nway_reset = phy_ethtool_nway_reset,
.get_link_ksettings = phy_ethtool_get_link_ksettings, .get_link_ksettings = phy_ethtool_get_link_ksettings,
.set_link_ksettings = phy_ethtool_set_link_ksettings, .set_link_ksettings = phy_ethtool_set_link_ksettings,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment