diff options
author | stephen hemminger <shemminger@vyatta.com> | 2012-01-05 14:10:23 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-09 17:05:23 -0500 |
commit | bc689c9788f2cc9829d01d84083bc1714b969b15 (patch) | |
tree | 80417749027b979ecc11875d0cdbb5cc78113713 /drivers/net/usb/ipheth.c | |
parent | 3969eb3859e4fad4b32ca8f96d4ec8551c20704a (diff) |
usbnet: make ethtool_ops const
The ethtool_ops table of function pointers should be const.
Fix all the usb network drivers.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/usb/ipheth.c')
-rw-r--r-- | drivers/net/usb/ipheth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/usb/ipheth.c b/drivers/net/usb/ipheth.c index 13c1f044b40d..a9a97c840312 100644 --- a/drivers/net/usb/ipheth.c +++ b/drivers/net/usb/ipheth.c | |||
@@ -420,7 +420,7 @@ static u32 ipheth_ethtool_op_get_link(struct net_device *net) | |||
420 | return netif_carrier_ok(dev->net); | 420 | return netif_carrier_ok(dev->net); |
421 | } | 421 | } |
422 | 422 | ||
423 | static struct ethtool_ops ops = { | 423 | static const struct ethtool_ops ops = { |
424 | .get_link = ipheth_ethtool_op_get_link | 424 | .get_link = ipheth_ethtool_op_get_link |
425 | }; | 425 | }; |
426 | 426 | ||