aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/usb/mcs7830.c
diff options
context:
space:
mode:
authorPhilippe Reynes <tremyfr@gmail.com>2017-03-16 23:18:52 +0100
committerDavid S. Miller <davem@davemloft.net>2017-03-21 16:04:00 -0700
commit17400f77b87cd2cf29fde358a05d5efc7b0eabab (patch)
treeaf325ed12c1b95ac18adf41eca28f0732a6eef75 /drivers/net/usb/mcs7830.c
parentnet: usb: dm9601: use new api ethtool_{get|set}_link_ksettings (diff)
downloadlinux-dev-17400f77b87cd2cf29fde358a05d5efc7b0eabab.tar.xz
linux-dev-17400f77b87cd2cf29fde358a05d5efc7b0eabab.zip
net: usb: mcs7830: 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> Tested-by: poma <poma@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/net/usb/mcs7830.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/usb/mcs7830.c b/drivers/net/usb/mcs7830.c
index 4f345bd4e6e2..5771ff261fa8 100644
--- a/drivers/net/usb/mcs7830.c
+++ b/drivers/net/usb/mcs7830.c
@@ -464,9 +464,9 @@ static const struct ethtool_ops mcs7830_ethtool_ops = {
.get_link = usbnet_get_link,
.get_msglevel = usbnet_get_msglevel,
.set_msglevel = usbnet_set_msglevel,
- .get_settings = usbnet_get_settings,
- .set_settings = usbnet_set_settings,
.nway_reset = usbnet_nway_reset,
+ .get_link_ksettings = usbnet_get_link_ksettings,
+ .set_link_ksettings = usbnet_set_link_ksettings,
};
static const struct net_device_ops mcs7830_netdev_ops = {