mirror of https://gitee.com/openkylin/linux.git
net: ethernet: bcmsysport: 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> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
715a022703
commit
697666eac6
|
@ -96,24 +96,6 @@ static inline void tdma_port_write_desc_addr(struct bcm_sysport_priv *priv,
|
|||
}
|
||||
|
||||
/* Ethtool operations */
|
||||
static int bcm_sysport_set_settings(struct net_device *dev,
|
||||
struct ethtool_cmd *cmd)
|
||||
{
|
||||
if (!netif_running(dev))
|
||||
return -EINVAL;
|
||||
|
||||
return phy_ethtool_sset(dev->phydev, cmd);
|
||||
}
|
||||
|
||||
static int bcm_sysport_get_settings(struct net_device *dev,
|
||||
struct ethtool_cmd *cmd)
|
||||
{
|
||||
if (!netif_running(dev))
|
||||
return -EINVAL;
|
||||
|
||||
return phy_ethtool_gset(dev->phydev, cmd);
|
||||
}
|
||||
|
||||
static int bcm_sysport_set_rx_csum(struct net_device *dev,
|
||||
netdev_features_t wanted)
|
||||
{
|
||||
|
@ -1711,8 +1693,6 @@ static int bcm_sysport_stop(struct net_device *dev)
|
|||
}
|
||||
|
||||
static struct ethtool_ops bcm_sysport_ethtool_ops = {
|
||||
.get_settings = bcm_sysport_get_settings,
|
||||
.set_settings = bcm_sysport_set_settings,
|
||||
.get_drvinfo = bcm_sysport_get_drvinfo,
|
||||
.get_msglevel = bcm_sysport_get_msglvl,
|
||||
.set_msglevel = bcm_sysport_set_msglvl,
|
||||
|
@ -1724,6 +1704,8 @@ static struct ethtool_ops bcm_sysport_ethtool_ops = {
|
|||
.set_wol = bcm_sysport_set_wol,
|
||||
.get_coalesce = bcm_sysport_get_coalesce,
|
||||
.set_coalesce = bcm_sysport_set_coalesce,
|
||||
.get_link_ksettings = phy_ethtool_get_link_ksettings,
|
||||
.set_link_ksettings = phy_ethtool_set_link_ksettings,
|
||||
};
|
||||
|
||||
static const struct net_device_ops bcm_sysport_netdev_ops = {
|
||||
|
|
Loading…
Reference in New Issue