Skip to content

Commit

Permalink
e1000: correct wrong coding style for "else"
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jiri Pirko authored and David S. Miller committed Feb 23, 2010
1 parent 295fae5 commit 10886af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/net/e1000/e1000_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2170,8 +2170,7 @@ static void e1000_set_rx_mode(struct net_device *netdev)
hash_bit = hash_value & 0x1F;
mta = (1 << hash_bit);
mcarray[hash_reg] |= mta;
}
else {
} else {
e1000_rar_set(hw, mc_ptr->da_addr, i++);
}
}
Expand Down

0 comments on commit 10886af

Please sign in to comment.