Commit 975419cf authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller

bna: make ethtool_ops and strings const

Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bd601cc4
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
sizeof(struct bnad_drv_stats) / sizeof(u64) + \ sizeof(struct bnad_drv_stats) / sizeof(u64) + \
offsetof(struct bfi_enet_stats, rxf_stats[0]) / sizeof(u64)) offsetof(struct bfi_enet_stats, rxf_stats[0]) / sizeof(u64))
static char *bnad_net_stats_strings[BNAD_ETHTOOL_STATS_NUM] = { static const char *bnad_net_stats_strings[BNAD_ETHTOOL_STATS_NUM] = {
"rx_packets", "rx_packets",
"tx_packets", "tx_packets",
"rx_bytes", "rx_bytes",
...@@ -1072,7 +1072,7 @@ bnad_set_eeprom(struct net_device *netdev, struct ethtool_eeprom *eeprom, ...@@ -1072,7 +1072,7 @@ bnad_set_eeprom(struct net_device *netdev, struct ethtool_eeprom *eeprom,
return ret; return ret;
} }
static struct ethtool_ops bnad_ethtool_ops = { static const struct ethtool_ops bnad_ethtool_ops = {
.get_settings = bnad_get_settings, .get_settings = bnad_get_settings,
.set_settings = bnad_set_settings, .set_settings = bnad_set_settings,
.get_drvinfo = bnad_get_drvinfo, .get_drvinfo = bnad_get_drvinfo,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment