projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bcb58f7
)
net: usb: mcs7830: use new api ethtool_{get|set}_link_ksettings
author
Philippe Reynes
<
[email protected]
>
Thu, 16 Mar 2017 22:18:52 +0000
(23:18 +0100)
committer
David S. Miller
<
[email protected]
>
Tue, 21 Mar 2017 23:04:00 +0000
(16:04 -0700)
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 <
[email protected]
>
Tested-by: poma <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/usb/mcs7830.c
patch
|
blob
|
history
diff --git
a/drivers/net/usb/mcs7830.c
b/drivers/net/usb/mcs7830.c
index 4f345bd4e6e29558daf29c3d472d2c0768c3202f..5771ff261fa8d0ff6199d975aaca2131d8bce409 100644
(file)
--- 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 = {