Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b0c06e0 authored by Philippe Reynes's avatar Philippe Reynes Committed by David S. Miller
Browse files

net: intel: e100: 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.

Signed-off-by: default avatarPhilippe Reynes <tremyfr@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8a43379f
Loading
Loading
Loading
Loading
+8 −6
Original line number Original line Diff line number Diff line
@@ -2426,19 +2426,21 @@ static int e100_loopback_test(struct nic *nic, enum loopback loopback_mode)
#define E100_82552_LED_ON       0x000F /* LEDTX and LED_RX both on */
#define E100_82552_LED_ON       0x000F /* LEDTX and LED_RX both on */
#define E100_82552_LED_OFF      0x000A /* LEDTX and LED_RX both off */
#define E100_82552_LED_OFF      0x000A /* LEDTX and LED_RX both off */


static int e100_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
static int e100_get_link_ksettings(struct net_device *netdev,
				   struct ethtool_link_ksettings *cmd)
{
{
	struct nic *nic = netdev_priv(netdev);
	struct nic *nic = netdev_priv(netdev);
	return mii_ethtool_gset(&nic->mii, cmd);
	return mii_ethtool_get_link_ksettings(&nic->mii, cmd);
}
}


static int e100_set_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
static int e100_set_link_ksettings(struct net_device *netdev,
				   const struct ethtool_link_ksettings *cmd)
{
{
	struct nic *nic = netdev_priv(netdev);
	struct nic *nic = netdev_priv(netdev);
	int err;
	int err;


	mdio_write(netdev, nic->mii.phy_id, MII_BMCR, BMCR_RESET);
	mdio_write(netdev, nic->mii.phy_id, MII_BMCR, BMCR_RESET);
	err = mii_ethtool_sset(&nic->mii, cmd);
	err = mii_ethtool_set_link_ksettings(&nic->mii, cmd);
	e100_exec_cb(nic, NULL, e100_configure);
	e100_exec_cb(nic, NULL, e100_configure);


	return err;
	return err;
@@ -2741,8 +2743,6 @@ static void e100_get_strings(struct net_device *netdev, u32 stringset, u8 *data)
}
}


static const struct ethtool_ops e100_ethtool_ops = {
static const struct ethtool_ops e100_ethtool_ops = {
	.get_settings		= e100_get_settings,
	.set_settings		= e100_set_settings,
	.get_drvinfo		= e100_get_drvinfo,
	.get_drvinfo		= e100_get_drvinfo,
	.get_regs_len		= e100_get_regs_len,
	.get_regs_len		= e100_get_regs_len,
	.get_regs		= e100_get_regs,
	.get_regs		= e100_get_regs,
@@ -2763,6 +2763,8 @@ static const struct ethtool_ops e100_ethtool_ops = {
	.get_ethtool_stats	= e100_get_ethtool_stats,
	.get_ethtool_stats	= e100_get_ethtool_stats,
	.get_sset_count		= e100_get_sset_count,
	.get_sset_count		= e100_get_sset_count,
	.get_ts_info		= ethtool_op_get_ts_info,
	.get_ts_info		= ethtool_op_get_ts_info,
	.get_link_ksettings	= e100_get_link_ksettings,
	.set_link_ksettings	= e100_set_link_ksettings,
};
};


static int e100_do_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
static int e100_do_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)