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:
d0b3ab3
)
net: usb: dm9601: use new api ethtool_{get|set}_link_ksettings
author
Philippe Reynes
<
[email protected]
>
Thu, 16 Mar 2017 22:18:51 +0000
(23:18 +0100)
committer
David S. Miller
<
[email protected]
>
Tue, 21 Mar 2017 23:03:59 +0000
(16:03 -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/dm9601.c
patch
|
blob
|
history
diff --git
a/drivers/net/usb/dm9601.c
b/drivers/net/usb/dm9601.c
index 0b4bdd39106b0a73e954070a42ac87be22ac1821..fea1b64ca26a6c284758bf0a827f582ba57def3a 100644
(file)
--- a/
drivers/net/usb/dm9601.c
+++ b/
drivers/net/usb/dm9601.c
@@
-281,9
+281,9
@@
static const struct ethtool_ops dm9601_ethtool_ops = {
.set_msglevel = usbnet_set_msglevel,
.get_eeprom_len = dm9601_get_eeprom_len,
.get_eeprom = dm9601_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 dm9601_set_multicast(struct net_device *net)