mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-15 16:53:54 +08:00
net: bridge: use eth_broadcast_addr() to assign broadcast address
This patch is to use eth_broadcast_addr() to assign broadcast address insetad of memset(). Signed-off-by: Mao Wenan <maowenan@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f295b3ae9f
commit
1bfe45f4ae
@ -517,7 +517,7 @@ struct net_bridge_port_group *br_multicast_new_port_group(
|
||||
if (src)
|
||||
memcpy(p->eth_addr, src, ETH_ALEN);
|
||||
else
|
||||
memset(p->eth_addr, 0xff, ETH_ALEN);
|
||||
eth_broadcast_addr(p->eth_addr);
|
||||
|
||||
return p;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user