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/epic100.c | |
parent | 76fd85937097a0c2ec8ab23bf21dc10992d1c398 (diff) |
drivers/net: const-ify ethtool_ops declarations
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/epic100.c')
-rw-r--r-- | drivers/net/epic100.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/epic100.c b/drivers/net/epic100.c index b885b2029b49..ba2565ee0439 100644 --- a/drivers/net/epic100.c +++ b/drivers/net/epic100.c | |||
@@ -299,7 +299,7 @@ static int epic_rx(struct net_device *dev, int budget); | |||
299 | static int epic_poll(struct net_device *dev, int *budget); | 299 | static int epic_poll(struct net_device *dev, int *budget); |
300 | static irqreturn_t epic_interrupt(int irq, void *dev_instance, struct pt_regs *regs); | 300 | static irqreturn_t epic_interrupt(int irq, void *dev_instance, struct pt_regs *regs); |
301 | static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); | 301 | static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); |
302 | static struct ethtool_ops netdev_ethtool_ops; | 302 | static const struct ethtool_ops netdev_ethtool_ops; |
303 | static int epic_close(struct net_device *dev); | 303 | static int epic_close(struct net_device *dev); |
304 | static struct net_device_stats *epic_get_stats(struct net_device *dev); | 304 | static struct net_device_stats *epic_get_stats(struct net_device *dev); |
305 | static void set_rx_mode(struct net_device *dev); | 305 | static void set_rx_mode(struct net_device *dev); |
@@ -1492,7 +1492,7 @@ static void ethtool_complete(struct net_device *dev) | |||
1492 | } | 1492 | } |
1493 | } | 1493 | } |
1494 | 1494 | ||
1495 | static struct ethtool_ops netdev_ethtool_ops = { | 1495 | static const struct ethtool_ops netdev_ethtool_ops = { |
1496 | .get_drvinfo = netdev_get_drvinfo, | 1496 | .get_drvinfo = netdev_get_drvinfo, |
1497 | .get_settings = netdev_get_settings, | 1497 | .get_settings = netdev_get_settings, |
1498 | .set_settings = netdev_set_settings, | 1498 | .set_settings = netdev_set_settings, |