summaryrefslogtreecommitdiffstats
path: root/drivers/net/usb/asix.c
diff options
context:
space:
mode:
authorstephen hemminger2012-01-05 20:10:23 +0100
committerDavid S. Miller2012-01-09 23:05:23 +0100
commitbc689c9788f2cc9829d01d84083bc1714b969b15 (patch)
tree80417749027b979ecc11875d0cdbb5cc78113713 /drivers/net/usb/asix.c
parentnet: Fix build with INET disabled. (diff)
downloadkernel-qcow2-linux-bc689c9788f2cc9829d01d84083bc1714b969b15.tar.gz
kernel-qcow2-linux-bc689c9788f2cc9829d01d84083bc1714b969b15.tar.xz
kernel-qcow2-linux-bc689c9788f2cc9829d01d84083bc1714b969b15.zip
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/asix.c')
-rw-r--r--drivers/net/usb/asix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c
index df2b08dbbf9e..5857a404855f 100644
--- a/drivers/net/usb/asix.c
+++ b/drivers/net/usb/asix.c
@@ -1152,7 +1152,7 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
return 0;
}
-static struct ethtool_ops ax88178_ethtool_ops = {
+static const struct ethtool_ops ax88178_ethtool_ops = {
.get_drvinfo = asix_get_drvinfo,
.get_link = asix_get_link,
.get_msglevel = usbnet_get_msglevel,