mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 01:51:34 +00:00
ravb: remove custom .get_link_ksettings from ethtool ops
The generic phy_ethtool_get_link_ksettings() function from phylib can be used instead of in-house ravb_get_link_ksettings(). 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
efdf75112d
commit
468e40b5fe
@ -1106,17 +1106,6 @@ static int ravb_phy_start(struct net_device *ndev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ravb_get_link_ksettings(struct net_device *ndev,
|
||||
struct ethtool_link_ksettings *cmd)
|
||||
{
|
||||
if (!ndev->phydev)
|
||||
return -ENODEV;
|
||||
|
||||
phy_ethtool_ksettings_get(ndev->phydev, cmd);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ravb_set_link_ksettings(struct net_device *ndev,
|
||||
const struct ethtool_link_ksettings *cmd)
|
||||
{
|
||||
@ -1348,7 +1337,7 @@ static const struct ethtool_ops ravb_ethtool_ops = {
|
||||
.get_ringparam = ravb_get_ringparam,
|
||||
.set_ringparam = ravb_set_ringparam,
|
||||
.get_ts_info = ravb_get_ts_info,
|
||||
.get_link_ksettings = ravb_get_link_ksettings,
|
||||
.get_link_ksettings = phy_ethtool_get_link_ksettings,
|
||||
.set_link_ksettings = ravb_set_link_ksettings,
|
||||
.get_wol = ravb_get_wol,
|
||||
.set_wol = ravb_set_wol,
|
||||
|
Loading…
Reference in New Issue
Block a user