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/ewrk3.c | |
parent | 76fd85937097a0c2ec8ab23bf21dc10992d1c398 (diff) |
drivers/net: const-ify ethtool_ops declarations
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/ewrk3.c')
-rw-r--r-- | drivers/net/ewrk3.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/ewrk3.c b/drivers/net/ewrk3.c index 78a1c425a9ab..75a43f7c70cf 100644 --- a/drivers/net/ewrk3.c +++ b/drivers/net/ewrk3.c | |||
@@ -305,8 +305,8 @@ static int ewrk3_close(struct net_device *dev); | |||
305 | static struct net_device_stats *ewrk3_get_stats(struct net_device *dev); | 305 | static struct net_device_stats *ewrk3_get_stats(struct net_device *dev); |
306 | static void set_multicast_list(struct net_device *dev); | 306 | static void set_multicast_list(struct net_device *dev); |
307 | static int ewrk3_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); | 307 | static int ewrk3_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); |
308 | static struct ethtool_ops ethtool_ops_203; | 308 | static const struct ethtool_ops ethtool_ops_203; |
309 | static struct ethtool_ops ethtool_ops; | 309 | static const struct ethtool_ops ethtool_ops; |
310 | 310 | ||
311 | /* | 311 | /* |
312 | ** Private functions | 312 | ** Private functions |
@@ -1666,14 +1666,14 @@ static int ewrk3_phys_id(struct net_device *dev, u32 data) | |||
1666 | return signal_pending(current) ? -ERESTARTSYS : 0; | 1666 | return signal_pending(current) ? -ERESTARTSYS : 0; |
1667 | } | 1667 | } |
1668 | 1668 | ||
1669 | static struct ethtool_ops ethtool_ops_203 = { | 1669 | static const struct ethtool_ops ethtool_ops_203 = { |
1670 | .get_drvinfo = ewrk3_get_drvinfo, | 1670 | .get_drvinfo = ewrk3_get_drvinfo, |
1671 | .get_settings = ewrk3_get_settings, | 1671 | .get_settings = ewrk3_get_settings, |
1672 | .set_settings = ewrk3_set_settings, | 1672 | .set_settings = ewrk3_set_settings, |
1673 | .phys_id = ewrk3_phys_id, | 1673 | .phys_id = ewrk3_phys_id, |
1674 | }; | 1674 | }; |
1675 | 1675 | ||
1676 | static struct ethtool_ops ethtool_ops = { | 1676 | static const struct ethtool_ops ethtool_ops = { |
1677 | .get_drvinfo = ewrk3_get_drvinfo, | 1677 | .get_drvinfo = ewrk3_get_drvinfo, |
1678 | .get_settings = ewrk3_get_settings, | 1678 | .get_settings = ewrk3_get_settings, |
1679 | .set_settings = ewrk3_set_settings, | 1679 | .set_settings = ewrk3_set_settings, |