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/3c509.c | |
parent | 76fd85937097a0c2ec8ab23bf21dc10992d1c398 (diff) |
drivers/net: const-ify ethtool_ops declarations
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/3c509.c')
-rw-r--r-- | drivers/net/3c509.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/3c509.c b/drivers/net/3c509.c index 48b99beb1e8b..16817306f048 100644 --- a/drivers/net/3c509.c +++ b/drivers/net/3c509.c | |||
@@ -200,7 +200,7 @@ static void set_multicast_list(struct net_device *dev); | |||
200 | static void el3_tx_timeout (struct net_device *dev); | 200 | static void el3_tx_timeout (struct net_device *dev); |
201 | static void el3_down(struct net_device *dev); | 201 | static void el3_down(struct net_device *dev); |
202 | static void el3_up(struct net_device *dev); | 202 | static void el3_up(struct net_device *dev); |
203 | static struct ethtool_ops ethtool_ops; | 203 | static const struct ethtool_ops ethtool_ops; |
204 | #ifdef EL3_SUSPEND | 204 | #ifdef EL3_SUSPEND |
205 | static int el3_suspend(struct device *, pm_message_t); | 205 | static int el3_suspend(struct device *, pm_message_t); |
206 | static int el3_resume(struct device *); | 206 | static int el3_resume(struct device *); |
@@ -1349,7 +1349,7 @@ static void el3_set_msglevel(struct net_device *dev, u32 v) | |||
1349 | el3_debug = v; | 1349 | el3_debug = v; |
1350 | } | 1350 | } |
1351 | 1351 | ||
1352 | static struct ethtool_ops ethtool_ops = { | 1352 | static const struct ethtool_ops ethtool_ops = { |
1353 | .get_drvinfo = el3_get_drvinfo, | 1353 | .get_drvinfo = el3_get_drvinfo, |
1354 | .get_settings = el3_get_settings, | 1354 | .get_settings = el3_get_settings, |
1355 | .set_settings = el3_set_settings, | 1355 | .set_settings = el3_set_settings, |