diff options
author | Alejandro Martinez Ruiz <alex@flawedcode.org> | 2007-10-18 04:16:33 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:03:37 -0500 |
commit | c00acf46deb18926931ba264510353cf22b98a79 (patch) | |
tree | 7b7105d3505cb13aa0474e0bd89b23d7b9f2b958 /drivers/net/e1000e/ethtool.c | |
parent | 4c3616cdda0632a3d0e39069765f9ea0e6bd093e (diff) |
netdev: ARRAY_SIZE() cleanups
Convert array size calculations to use ARRAY_SIZE().
Signed-off-by: Alejandro Martinez Ruiz <alex@flawedcode.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/e1000e/ethtool.c')
-rw-r--r-- | drivers/net/e1000e/ethtool.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/e1000e/ethtool.c b/drivers/net/e1000e/ethtool.c index b36b853bed1a..e6ff3af8ef0f 100644 --- a/drivers/net/e1000e/ethtool.c +++ b/drivers/net/e1000e/ethtool.c | |||
@@ -95,8 +95,7 @@ static const struct e1000_stats e1000_gstrings_stats[] = { | |||
95 | { "tx_dma_failed", E1000_STAT(tx_dma_failed) }, | 95 | { "tx_dma_failed", E1000_STAT(tx_dma_failed) }, |
96 | }; | 96 | }; |
97 | 97 | ||
98 | #define E1000_GLOBAL_STATS_LEN \ | 98 | #define E1000_GLOBAL_STATS_LEN ARRAY_SIZE(e1000_gstrings_stats) |
99 | sizeof(e1000_gstrings_stats) / sizeof(struct e1000_stats) | ||
100 | #define E1000_STATS_LEN (E1000_GLOBAL_STATS_LEN) | 99 | #define E1000_STATS_LEN (E1000_GLOBAL_STATS_LEN) |
101 | static const char e1000_gstrings_test[][ETH_GSTRING_LEN] = { | 100 | static const char e1000_gstrings_test[][ETH_GSTRING_LEN] = { |
102 | "Register test (offline)", "Eeprom test (offline)", | 101 | "Register test (offline)", "Eeprom test (offline)", |