net: smsc: smc911x: use new api ethtool_{get|set}_link_ksettings
The ethtool api {get|set}_settings is deprecated. We move this driver to new api {get|set}_link_ksettings. As I don't have the hardware, I'd be very pleased if someone may test this patch. Signed-off-by: Philippe Reynes <tremyfr@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
9c28286b1b
commit
9e0b516af2
@@ -1446,40 +1446,40 @@ static int smc911x_close(struct net_device *dev)
|
|||||||
* Ethtool support
|
* Ethtool support
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
smc911x_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd)
|
smc911x_ethtool_get_link_ksettings(struct net_device *dev,
|
||||||
|
struct ethtool_link_ksettings *cmd)
|
||||||
{
|
{
|
||||||
struct smc911x_local *lp = netdev_priv(dev);
|
struct smc911x_local *lp = netdev_priv(dev);
|
||||||
int ret, status;
|
int ret, status;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
u32 supported;
|
||||||
|
|
||||||
DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
|
DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
|
||||||
cmd->maxtxpkt = 1;
|
|
||||||
cmd->maxrxpkt = 1;
|
|
||||||
|
|
||||||
if (lp->phy_type != 0) {
|
if (lp->phy_type != 0) {
|
||||||
spin_lock_irqsave(&lp->lock, flags);
|
spin_lock_irqsave(&lp->lock, flags);
|
||||||
ret = mii_ethtool_gset(&lp->mii, cmd);
|
ret = mii_ethtool_get_link_ksettings(&lp->mii, cmd);
|
||||||
spin_unlock_irqrestore(&lp->lock, flags);
|
spin_unlock_irqrestore(&lp->lock, flags);
|
||||||
} else {
|
} else {
|
||||||
cmd->supported = SUPPORTED_10baseT_Half |
|
supported = SUPPORTED_10baseT_Half |
|
||||||
SUPPORTED_10baseT_Full |
|
SUPPORTED_10baseT_Full |
|
||||||
SUPPORTED_TP | SUPPORTED_AUI;
|
SUPPORTED_TP | SUPPORTED_AUI;
|
||||||
|
|
||||||
if (lp->ctl_rspeed == 10)
|
if (lp->ctl_rspeed == 10)
|
||||||
ethtool_cmd_speed_set(cmd, SPEED_10);
|
cmd->base.speed = SPEED_10;
|
||||||
else if (lp->ctl_rspeed == 100)
|
else if (lp->ctl_rspeed == 100)
|
||||||
ethtool_cmd_speed_set(cmd, SPEED_100);
|
cmd->base.speed = SPEED_100;
|
||||||
|
|
||||||
cmd->autoneg = AUTONEG_DISABLE;
|
cmd->base.autoneg = AUTONEG_DISABLE;
|
||||||
if (lp->mii.phy_id==1)
|
cmd->base.port = 0;
|
||||||
cmd->transceiver = XCVR_INTERNAL;
|
|
||||||
else
|
|
||||||
cmd->transceiver = XCVR_EXTERNAL;
|
|
||||||
cmd->port = 0;
|
|
||||||
SMC_GET_PHY_SPECIAL(lp, lp->mii.phy_id, status);
|
SMC_GET_PHY_SPECIAL(lp, lp->mii.phy_id, status);
|
||||||
cmd->duplex =
|
cmd->base.duplex =
|
||||||
(status & (PHY_SPECIAL_SPD_10FULL_ | PHY_SPECIAL_SPD_100FULL_)) ?
|
(status & (PHY_SPECIAL_SPD_10FULL_ | PHY_SPECIAL_SPD_100FULL_)) ?
|
||||||
DUPLEX_FULL : DUPLEX_HALF;
|
DUPLEX_FULL : DUPLEX_HALF;
|
||||||
|
|
||||||
|
ethtool_convert_legacy_u32_to_link_mode(
|
||||||
|
cmd->link_modes.supported, supported);
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1487,7 +1487,8 @@ smc911x_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
smc911x_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)
|
smc911x_ethtool_set_link_ksettings(struct net_device *dev,
|
||||||
|
const struct ethtool_link_ksettings *cmd)
|
||||||
{
|
{
|
||||||
struct smc911x_local *lp = netdev_priv(dev);
|
struct smc911x_local *lp = netdev_priv(dev);
|
||||||
int ret;
|
int ret;
|
||||||
@@ -1495,16 +1496,18 @@ smc911x_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)
|
|||||||
|
|
||||||
if (lp->phy_type != 0) {
|
if (lp->phy_type != 0) {
|
||||||
spin_lock_irqsave(&lp->lock, flags);
|
spin_lock_irqsave(&lp->lock, flags);
|
||||||
ret = mii_ethtool_sset(&lp->mii, cmd);
|
ret = mii_ethtool_set_link_ksettings(&lp->mii, cmd);
|
||||||
spin_unlock_irqrestore(&lp->lock, flags);
|
spin_unlock_irqrestore(&lp->lock, flags);
|
||||||
} else {
|
} else {
|
||||||
if (cmd->autoneg != AUTONEG_DISABLE ||
|
if (cmd->base.autoneg != AUTONEG_DISABLE ||
|
||||||
cmd->speed != SPEED_10 ||
|
cmd->base.speed != SPEED_10 ||
|
||||||
(cmd->duplex != DUPLEX_HALF && cmd->duplex != DUPLEX_FULL) ||
|
(cmd->base.duplex != DUPLEX_HALF &&
|
||||||
(cmd->port != PORT_TP && cmd->port != PORT_AUI))
|
cmd->base.duplex != DUPLEX_FULL) ||
|
||||||
|
(cmd->base.port != PORT_TP &&
|
||||||
|
cmd->base.port != PORT_AUI))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
lp->ctl_rfduplx = cmd->duplex == DUPLEX_FULL;
|
lp->ctl_rfduplx = cmd->base.duplex == DUPLEX_FULL;
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
}
|
}
|
||||||
@@ -1686,8 +1689,6 @@ static int smc911x_ethtool_geteeprom_len(struct net_device *dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const struct ethtool_ops smc911x_ethtool_ops = {
|
static const struct ethtool_ops smc911x_ethtool_ops = {
|
||||||
.get_settings = smc911x_ethtool_getsettings,
|
|
||||||
.set_settings = smc911x_ethtool_setsettings,
|
|
||||||
.get_drvinfo = smc911x_ethtool_getdrvinfo,
|
.get_drvinfo = smc911x_ethtool_getdrvinfo,
|
||||||
.get_msglevel = smc911x_ethtool_getmsglevel,
|
.get_msglevel = smc911x_ethtool_getmsglevel,
|
||||||
.set_msglevel = smc911x_ethtool_setmsglevel,
|
.set_msglevel = smc911x_ethtool_setmsglevel,
|
||||||
@@ -1698,6 +1699,8 @@ static const struct ethtool_ops smc911x_ethtool_ops = {
|
|||||||
.get_eeprom_len = smc911x_ethtool_geteeprom_len,
|
.get_eeprom_len = smc911x_ethtool_geteeprom_len,
|
||||||
.get_eeprom = smc911x_ethtool_geteeprom,
|
.get_eeprom = smc911x_ethtool_geteeprom,
|
||||||
.set_eeprom = smc911x_ethtool_seteeprom,
|
.set_eeprom = smc911x_ethtool_seteeprom,
|
||||||
|
.get_link_ksettings = smc911x_ethtool_get_link_ksettings,
|
||||||
|
.set_link_ksettings = smc911x_ethtool_set_link_ksettings,
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user