Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e998fd41 authored by Emilio López's avatar Emilio López Committed by David S. Miller
Browse files

net: ethernet: korina: initialize variables directly



Clean up the code a bit to initialize the variables directly when
defining them.

Signed-off-by: default avatarEmilio López <emilio@elopez.com.ar>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 35e729ac
Loading
Loading
Loading
Loading
+1 −4
Original line number Original line Diff line number Diff line
@@ -495,12 +495,9 @@ static void korina_multicast_list(struct net_device *dev)


	/* Build the hash table */
	/* Build the hash table */
	if (netdev_mc_count(dev) > 4) {
	if (netdev_mc_count(dev) > 4) {
		u16 hash_table[4];
		u16 hash_table[4] = { 0 };
		u32 crc;
		u32 crc;


		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);
			crc >>= 26;
			crc >>= 26;