diff options
author | Joe Perches <joe@perches.com> | 2011-01-12 18:08:04 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-01-13 21:48:25 -0800 |
commit | f767b6df8a796f901b2bd595ae22234636be4124 (patch) | |
tree | f2d523d95990f928618b81e7deb9de666ffd42db /drivers | |
parent | 78d07369462e9feeaa5db301b0aa70e9dcb40b48 (diff) |
netdev: bfin_mac: Remove is_multicast_ether_addr use in netdev_for_each_mc_addr
Remove code that has no effect.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/bfin_mac.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/net/bfin_mac.c b/drivers/net/bfin_mac.c index fe75e7a9742e..22abfb39d813 100644 --- a/drivers/net/bfin_mac.c +++ b/drivers/net/bfin_mac.c @@ -1284,19 +1284,12 @@ static void bfin_mac_multicast_hash(struct net_device *dev) { u32 emac_hashhi, emac_hashlo; struct netdev_hw_addr *ha; - char *addrs; u32 crc; emac_hashhi = emac_hashlo = 0; netdev_for_each_mc_addr(ha, dev) { - addrs = ha->addr; - - /* skip non-multicast addresses */ - if (!is_multicast_ether_addr(addrs)) - continue; - - crc = ether_crc(ETH_ALEN, addrs); + crc = ether_crc(ETH_ALEN, ha->addr); crc >>= 26; if (crc & 0x20) |