mirror of https://gitee.com/openkylin/linux.git
xen: Use eth_<foo>_addr instead of memset
Use the built-in function instead of memset. Signed-off-by: Joe Perches <joe@perches.com> Acked-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Wei Liu <wei.liu2@citrix.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1667c942e7
commit
3b6ed26d8b
|
@ -438,7 +438,7 @@ struct xenvif *xenvif_alloc(struct device *parent, domid_t domid,
|
|||
* stolen by an Ethernet bridge for STP purposes.
|
||||
* (FE:FF:FF:FF:FF:FF)
|
||||
*/
|
||||
memset(dev->dev_addr, 0xFF, ETH_ALEN);
|
||||
eth_broadcast_addr(dev->dev_addr);
|
||||
dev->dev_addr[0] &= ~0x01;
|
||||
|
||||
netif_carrier_off(dev);
|
||||
|
|
Loading…
Reference in New Issue