2016-11-15 19:21:19

by Florian Fainelli

[permalink] [raw]
Subject: [PATCH net-next 2/5] net: ethoc: 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 <[email protected]>
---
drivers/net/ethernet/ethoc.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/net/ethernet/ethoc.c b/drivers/net/ethernet/ethoc.c
index c044667a0a25..6456c180114b 100644
--- a/drivers/net/ethernet/ethoc.c
+++ b/drivers/net/ethernet/ethoc.c
@@ -966,6 +966,7 @@ static int ethoc_set_ringparam(struct net_device *dev,
const struct ethtool_ops ethoc_ethtool_ops = {
.get_regs_len = ethoc_get_regs_len,
.get_regs = ethoc_get_regs,
+ .nway_reset = phy_ethtool_nway_reset,
.get_link = ethtool_op_get_link,
.get_ringparam = ethoc_get_ringparam,
.set_ringparam = ethoc_set_ringparam,
--
2.9.3


2016-11-16 07:38:59

by Tobias Klauser

[permalink] [raw]
Subject: Re: [PATCH net-next 2/5] net: ethoc: Implement ethtool::nway_reset

On 2016-11-15 at 20:19:46 +0100, Florian Fainelli <[email protected]> wrote:
> 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 <[email protected]>

Reviewed-by: Tobias Klauser <[email protected]>