aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/3c523.c
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2006-09-13 14:30:00 -0400
committerJeff Garzik <jeff@garzik.org>2006-09-13 14:30:00 -0400
commit7282d491ecaee9883233a0e27283c4c79486279a (patch)
tree172ffa70716f5493db57976ceef7652120b3332f /drivers/net/3c523.c
parent76fd85937097a0c2ec8ab23bf21dc10992d1c398 (diff)
drivers/net: const-ify ethtool_ops declarations
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/3c523.c')
-rw-r--r--drivers/net/3c523.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/3c523.c b/drivers/net/3c523.c
index 3364eb4aff1e..cf8a0bc3bf34 100644
--- a/drivers/net/3c523.c
+++ b/drivers/net/3c523.c
@@ -189,7 +189,7 @@ static void elmc_timeout(struct net_device *dev);
189#ifdef ELMC_MULTICAST 189#ifdef ELMC_MULTICAST
190static void set_multicast_list(struct net_device *dev); 190static void set_multicast_list(struct net_device *dev);
191#endif 191#endif
192static struct ethtool_ops netdev_ethtool_ops; 192static const struct ethtool_ops netdev_ethtool_ops;
193 193
194/* helper-functions */ 194/* helper-functions */
195static int init586(struct net_device *dev); 195static int init586(struct net_device *dev);
@@ -1259,7 +1259,7 @@ static void netdev_get_drvinfo(struct net_device *dev,
1259 sprintf(info->bus_info, "MCA 0x%lx", dev->base_addr); 1259 sprintf(info->bus_info, "MCA 0x%lx", dev->base_addr);
1260} 1260}
1261 1261
1262static struct ethtool_ops netdev_ethtool_ops = { 1262static const struct ethtool_ops netdev_ethtool_ops = {
1263 .get_drvinfo = netdev_get_drvinfo, 1263 .get_drvinfo = netdev_get_drvinfo,
1264}; 1264};
1265 1265