diff options
author | Jeff Garzik <jeff@garzik.org> | 2006-09-13 14:30:00 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-09-13 14:30:00 -0400 |
commit | 7282d491ecaee9883233a0e27283c4c79486279a (patch) | |
tree | 172ffa70716f5493db57976ceef7652120b3332f /drivers/net/tulip/winbond-840.c | |
parent | 76fd85937097a0c2ec8ab23bf21dc10992d1c398 (diff) |
drivers/net: const-ify ethtool_ops declarations
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/tulip/winbond-840.c')
-rw-r--r-- | drivers/net/tulip/winbond-840.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/tulip/winbond-840.c b/drivers/net/tulip/winbond-840.c index 264723b592cf..2fca1ee24f5a 100644 --- a/drivers/net/tulip/winbond-840.c +++ b/drivers/net/tulip/winbond-840.c | |||
@@ -339,7 +339,7 @@ static u32 __set_rx_mode(struct net_device *dev); | |||
339 | static void set_rx_mode(struct net_device *dev); | 339 | static void set_rx_mode(struct net_device *dev); |
340 | static struct net_device_stats *get_stats(struct net_device *dev); | 340 | static struct net_device_stats *get_stats(struct net_device *dev); |
341 | static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); | 341 | static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); |
342 | static struct ethtool_ops netdev_ethtool_ops; | 342 | static const struct ethtool_ops netdev_ethtool_ops; |
343 | static int netdev_close(struct net_device *dev); | 343 | static int netdev_close(struct net_device *dev); |
344 | 344 | ||
345 | 345 | ||
@@ -1447,7 +1447,7 @@ static void netdev_set_msglevel(struct net_device *dev, u32 value) | |||
1447 | debug = value; | 1447 | debug = value; |
1448 | } | 1448 | } |
1449 | 1449 | ||
1450 | static struct ethtool_ops netdev_ethtool_ops = { | 1450 | static const struct ethtool_ops netdev_ethtool_ops = { |
1451 | .get_drvinfo = netdev_get_drvinfo, | 1451 | .get_drvinfo = netdev_get_drvinfo, |
1452 | .get_settings = netdev_get_settings, | 1452 | .get_settings = netdev_get_settings, |
1453 | .set_settings = netdev_set_settings, | 1453 | .set_settings = netdev_set_settings, |