]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
ethernet: replace open-coded ARRAY_SIZE with macro
authorJim Cromie <jim.cromie@gmail.com>
Tue, 10 Apr 2012 14:56:22 +0000 (14:56 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 13 Apr 2012 17:15:14 +0000 (13:15 -0400)
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/s6gmac.c

index 1895605abb3575bbf36d803ebfdc6081a4178f4b..8e9fda0c7aeb0cb6a2eb5cacdfc8d0ed62d0d6a4 100644 (file)
@@ -937,7 +937,7 @@ static struct net_device_stats *s6gmac_stats(struct net_device *dev)
        do {
                unsigned long flags;
                spin_lock_irqsave(&pd->lock, flags);
-               for (i = 0; i < sizeof(pd->stats) / sizeof(unsigned long); i++)
+               for (i = 0; i < ARRAY_SIZE(pd->stats); i++)
                        pd->stats[i] =
                                pd->carry[i] << (S6_GMAC_STAT_SIZE_MIN - 1);
                s6gmac_stats_collect(pd, &statinf[0][0]);