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:
a44017a
)
net: usb: sr9700: use new api ethtool_{get|set}_link_ksettings
author
Philippe Reynes
<
[email protected]
>
Thu, 16 Mar 2017 22:18:55 +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]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/usb/sr9700.c
patch
|
blob
|
history
diff --git
a/drivers/net/usb/sr9700.c
b/drivers/net/usb/sr9700.c
index 4a1e9c489f1f455388ffee289d65e1d6b36cba42..950a3a9466bdaf62931cd2781a598af2cf6ad478 100644
(file)
--- a/
drivers/net/usb/sr9700.c
+++ b/
drivers/net/usb/sr9700.c
@@
-249,9
+249,9
@@
static const struct ethtool_ops sr9700_ethtool_ops = {
.set_msglevel = usbnet_set_msglevel,
.get_eeprom_len = sr9700_get_eeprom_len,
.get_eeprom = sr9700_get_eeprom,
- .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 void sr9700_set_multicast(struct net_device *netdev)