mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 01:54:09 +08:00
ravb: remove custom .nway_reset from ethtool ops
The generic phy_ethtool_nway_reset() function from phylib can be used instead of in-house ravb_nway_reset(). Signed-off-by: Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com> Reviewed-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2a150c504a
commit
eeb0728471
@ -1131,16 +1131,6 @@ static int ravb_set_link_ksettings(struct net_device *ndev,
|
||||
return phy_ethtool_ksettings_set(ndev->phydev, cmd);
|
||||
}
|
||||
|
||||
static int ravb_nway_reset(struct net_device *ndev)
|
||||
{
|
||||
int error = -ENODEV;
|
||||
|
||||
if (ndev->phydev)
|
||||
error = phy_restart_aneg(ndev->phydev);
|
||||
|
||||
return error;
|
||||
}
|
||||
|
||||
static u32 ravb_get_msglevel(struct net_device *ndev)
|
||||
{
|
||||
struct ravb_private *priv = netdev_priv(ndev);
|
||||
@ -1353,7 +1343,7 @@ static int ravb_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
|
||||
}
|
||||
|
||||
static const struct ethtool_ops ravb_ethtool_ops = {
|
||||
.nway_reset = ravb_nway_reset,
|
||||
.nway_reset = phy_ethtool_nway_reset,
|
||||
.get_msglevel = ravb_get_msglevel,
|
||||
.set_msglevel = ravb_set_msglevel,
|
||||
.get_link = ethtool_op_get_link,
|
||||
|
Loading…
Reference in New Issue
Block a user