mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-08 12:28:27 +00:00
net: ethernet: apple: initialize variables directly
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>
This commit is contained in:
parent
bfd428daaf
commit
3b0aaef800
@ -1030,14 +1030,12 @@ static void bmac_set_multicast(struct net_device *dev)
|
||||
rx_cfg |= RxPromiscEnable;
|
||||
bmwrite(dev, RXCFG, rx_cfg);
|
||||
} else {
|
||||
u16 hash_table[4];
|
||||
u16 hash_table[4] = { 0 };
|
||||
|
||||
rx_cfg = bmread(dev, RXCFG);
|
||||
rx_cfg &= ~RxPromiscEnable;
|
||||
bmwrite(dev, RXCFG, rx_cfg);
|
||||
|
||||
for(i = 0; i < 4; i++) hash_table[i] = 0;
|
||||
|
||||
netdev_for_each_mc_addr(ha, dev) {
|
||||
crc = ether_crc_le(6, ha->addr);
|
||||
crc >>= 26;
|
||||
|
Loading…
x
Reference in New Issue
Block a user