提交 bfd428da 编写于 作者: E Emilio López 提交者: David S. Miller

net: ethernet: sun: initialize variables directly

Clean up the code a bit to initialize the variables directly when
defining them.
Signed-off-by: NEmilio López <emilio@elopez.com.ar>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 345af953
...@@ -1017,10 +1017,7 @@ static void bigmac_set_multicast(struct net_device *dev) ...@@ -1017,10 +1017,7 @@ static void bigmac_set_multicast(struct net_device *dev)
tmp |= BIGMAC_RXCFG_PMISC; tmp |= BIGMAC_RXCFG_PMISC;
sbus_writel(tmp, bregs + BMAC_RXCFG); sbus_writel(tmp, bregs + BMAC_RXCFG);
} else { } else {
u16 hash_table[4]; u16 hash_table[4] = { 0 };
for (i = 0; i < 4; i++)
hash_table[i] = 0;
netdev_for_each_mc_addr(ha, dev) { netdev_for_each_mc_addr(ha, dev) {
crc = ether_crc_le(6, ha->addr); crc = ether_crc_le(6, ha->addr);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册