diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2016-11-15 22:19:48 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-11-16 21:44:01 +0300 |
commit | 00606c498664a8575afc6c1835de1e3cf582445f (patch) | |
tree | fad5857aa18143900caaf97a51e0e33a86f8a12f | |
parent | 5489ee897685d4bfa8de13b4e13c6da7da2d8607 (diff) | |
download | linux-00606c498664a8575afc6c1835de1e3cf582445f.tar.xz |
net: ethernet: mvpp2: Implement ethtool::nway_reset
Implement ethtool::nway_reset using phy_ethtool_nway_reset. We are
already using dev->phydev all over the place so this comes for free.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/marvell/mvpp2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/marvell/mvpp2.c b/drivers/net/ethernet/marvell/mvpp2.c index c8bf155cad94..ee857868bea5 100644 --- a/drivers/net/ethernet/marvell/mvpp2.c +++ b/drivers/net/ethernet/marvell/mvpp2.c @@ -5923,6 +5923,7 @@ static const struct net_device_ops mvpp2_netdev_ops = { }; static const struct ethtool_ops mvpp2_eth_tool_ops = { + .nway_reset = phy_ethtool_nway_reset, .get_link = ethtool_op_get_link, .set_coalesce = mvpp2_ethtool_set_coalesce, .get_coalesce = mvpp2_ethtool_get_coalesce, |