From: Emilio López Date: Fri, 17 May 2013 10:42:53 +0000 (+0000) Subject: net: ethernet: sun: initialize variables directly X-Git-Tag: v3.11-rc1~16^2~397 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bfd428daaf619d671f6463bd8c7e4df8107e4775;p=profile%2Fivi%2Fkernel-x86-ivi.git net: ethernet: sun: initialize variables directly Clean up the code a bit to initialize the variables directly when defining them. Signed-off-by: Emilio López Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/sun/sunbmac.c b/drivers/net/ethernet/sun/sunbmac.c index 0549759..09b4f8c 100644 --- a/drivers/net/ethernet/sun/sunbmac.c +++ b/drivers/net/ethernet/sun/sunbmac.c @@ -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);