]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
net: ethernet: sun: initialize variables directly
authorEmilio López <emilio@elopez.com.ar>
Fri, 17 May 2013 10:42:53 +0000 (10:42 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 17 May 2013 20:55:43 +0000 (13:55 -0700)
Clean up the code a bit to initialize the variables directly when
defining them.

Signed-off-by: Emilio López <emilio@elopez.com.ar>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sun/sunbmac.c

index 054975939a184cc48035009420e8d1663871b0f9..09b4f8c0b199a390cf0ed8a7206e2788308f0818 100644 (file)
@@ -1017,10 +1017,7 @@ static void bigmac_set_multicast(struct net_device *dev)
                tmp |= BIGMAC_RXCFG_PMISC;
                sbus_writel(tmp, bregs + BMAC_RXCFG);
        } else {
-               u16 hash_table[4];
-
-               for (i = 0; i < 4; i++)
-                       hash_table[i] = 0;
+               u16 hash_table[4] = { 0 };
 
                netdev_for_each_mc_addr(ha, dev) {
                        crc = ether_crc_le(6, ha->addr);