mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-18 11:54:37 +08:00
net: ethernet: dnet: use phy_ethtool_{get|set}_link_ksettings
There are two generics functions phy_ethtool_{get|set}_link_ksettings, so we can use them instead of defining the same code in the driver. Signed-off-by: Philippe Reynes <tremyfr@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
958974fdaf
commit
1ba44a1f4d
@ -730,26 +730,6 @@ static struct net_device_stats *dnet_get_stats(struct net_device *dev)
|
||||
return nstat;
|
||||
}
|
||||
|
||||
static int dnet_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
|
||||
{
|
||||
struct phy_device *phydev = dev->phydev;
|
||||
|
||||
if (!phydev)
|
||||
return -ENODEV;
|
||||
|
||||
return phy_ethtool_gset(phydev, cmd);
|
||||
}
|
||||
|
||||
static int dnet_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
|
||||
{
|
||||
struct phy_device *phydev = dev->phydev;
|
||||
|
||||
if (!phydev)
|
||||
return -ENODEV;
|
||||
|
||||
return phy_ethtool_sset(phydev, cmd);
|
||||
}
|
||||
|
||||
static int dnet_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
|
||||
{
|
||||
struct phy_device *phydev = dev->phydev;
|
||||
@ -772,11 +752,11 @@ static void dnet_get_drvinfo(struct net_device *dev,
|
||||
}
|
||||
|
||||
static const struct ethtool_ops dnet_ethtool_ops = {
|
||||
.get_settings = dnet_get_settings,
|
||||
.set_settings = dnet_set_settings,
|
||||
.get_drvinfo = dnet_get_drvinfo,
|
||||
.get_link = ethtool_op_get_link,
|
||||
.get_ts_info = ethtool_op_get_ts_info,
|
||||
.get_link_ksettings = phy_ethtool_get_link_ksettings,
|
||||
.set_link_ksettings = phy_ethtool_set_link_ksettings,
|
||||
};
|
||||
|
||||
static const struct net_device_ops dnet_netdev_ops = {
|
||||
|
Loading…
Reference in New Issue
Block a user