diff options
Diffstat (limited to 'drivers/net/3c515.c')
-rw-r--r-- | drivers/net/3c515.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/3c515.c b/drivers/net/3c515.c index bde9f5bd3362..91f2232e6050 100644 --- a/drivers/net/3c515.c +++ b/drivers/net/3c515.c | |||
@@ -379,7 +379,7 @@ static int corkscrew_close(struct net_device *dev); | |||
379 | static void update_stats(int addr, struct net_device *dev); | 379 | static void update_stats(int addr, struct net_device *dev); |
380 | static struct net_device_stats *corkscrew_get_stats(struct net_device *dev); | 380 | static struct net_device_stats *corkscrew_get_stats(struct net_device *dev); |
381 | static void set_rx_mode(struct net_device *dev); | 381 | static void set_rx_mode(struct net_device *dev); |
382 | static struct ethtool_ops netdev_ethtool_ops; | 382 | static const struct ethtool_ops netdev_ethtool_ops; |
383 | 383 | ||
384 | 384 | ||
385 | /* | 385 | /* |
@@ -1561,7 +1561,7 @@ static void netdev_set_msglevel(struct net_device *dev, u32 level) | |||
1561 | corkscrew_debug = level; | 1561 | corkscrew_debug = level; |
1562 | } | 1562 | } |
1563 | 1563 | ||
1564 | static struct ethtool_ops netdev_ethtool_ops = { | 1564 | static const struct ethtool_ops netdev_ethtool_ops = { |
1565 | .get_drvinfo = netdev_get_drvinfo, | 1565 | .get_drvinfo = netdev_get_drvinfo, |
1566 | .get_msglevel = netdev_get_msglevel, | 1566 | .get_msglevel = netdev_get_msglevel, |
1567 | .set_msglevel = netdev_set_msglevel, | 1567 | .set_msglevel = netdev_set_msglevel, |