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/mv643xx_eth.c | |
parent | 76fd85937097a0c2ec8ab23bf21dc10992d1c398 (diff) |
drivers/net: const-ify ethtool_ops declarations
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/mv643xx_eth.c')
-rw-r--r-- | drivers/net/mv643xx_eth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c index 70fe838872db..0917a767faf8 100644 --- a/drivers/net/mv643xx_eth.c +++ b/drivers/net/mv643xx_eth.c | |||
@@ -74,7 +74,7 @@ static int ethernet_phy_detect(unsigned int eth_port_num); | |||
74 | static int mv643xx_mdio_read(struct net_device *dev, int phy_id, int location); | 74 | static int mv643xx_mdio_read(struct net_device *dev, int phy_id, int location); |
75 | static void mv643xx_mdio_write(struct net_device *dev, int phy_id, int location, int val); | 75 | static void mv643xx_mdio_write(struct net_device *dev, int phy_id, int location, int val); |
76 | static int mv643xx_eth_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd); | 76 | static int mv643xx_eth_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd); |
77 | static struct ethtool_ops mv643xx_ethtool_ops; | 77 | static const struct ethtool_ops mv643xx_ethtool_ops; |
78 | 78 | ||
79 | static char mv643xx_driver_name[] = "mv643xx_eth"; | 79 | static char mv643xx_driver_name[] = "mv643xx_eth"; |
80 | static char mv643xx_driver_version[] = "1.0"; | 80 | static char mv643xx_driver_version[] = "1.0"; |
@@ -2766,7 +2766,7 @@ static int mv643xx_eth_do_ioctl(struct net_device *dev, struct ifreq *ifr, int c | |||
2766 | return generic_mii_ioctl(&mp->mii, if_mii(ifr), cmd, NULL); | 2766 | return generic_mii_ioctl(&mp->mii, if_mii(ifr), cmd, NULL); |
2767 | } | 2767 | } |
2768 | 2768 | ||
2769 | static struct ethtool_ops mv643xx_ethtool_ops = { | 2769 | static const struct ethtool_ops mv643xx_ethtool_ops = { |
2770 | .get_settings = mv643xx_get_settings, | 2770 | .get_settings = mv643xx_get_settings, |
2771 | .set_settings = mv643xx_set_settings, | 2771 | .set_settings = mv643xx_set_settings, |
2772 | .get_drvinfo = mv643xx_get_drvinfo, | 2772 | .get_drvinfo = mv643xx_get_drvinfo, |