From: Tobias Klauser Date: Wed, 29 Jun 2011 02:15:35 +0000 (+0000) Subject: net: iseries_veth: Omit check for multicast bit in netdev_for_each_mc_addr X-Git-Tag: next-20110726~165^2~285 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=eb31c4e0b0d8d7f673f95644cbfd2993f1c36840;p=karo-tx-linux.git net: iseries_veth: Omit check for multicast bit in netdev_for_each_mc_addr There is no need to check for the address being a multicast address in the netdev_for_each_mc_addr loop, so remove it. Signed-off-by: Tobias Klauser Signed-off-by: David S. Miller --- diff --git a/drivers/net/iseries_veth.c b/drivers/net/iseries_veth.c index b6c296f4b4d5..242bf524273e 100644 --- a/drivers/net/iseries_veth.c +++ b/drivers/net/iseries_veth.c @@ -964,11 +964,9 @@ static void veth_set_multicast_list(struct net_device *dev) u8 *addr = ha->addr; u64 xaddr = 0; - if (addr[0] & 0x01) {/* multicast address? */ - memcpy(&xaddr, addr, ETH_ALEN); - port->mcast_addr[port->num_mcast] = xaddr; - port->num_mcast++; - } + memcpy(&xaddr, addr, ETH_ALEN); + port->mcast_addr[port->num_mcast] = xaddr; + port->num_mcast++; } }