mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 12:44:11 +08:00
ethernet: Use eth_<foo>_addr instead of memset
Use the built-in function instead of memset. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
211b85349c
commit
afc130dd39
@ -104,7 +104,7 @@ int eth_header(struct sk_buff *skb, struct net_device *dev,
|
||||
*/
|
||||
|
||||
if (dev->flags & (IFF_LOOPBACK | IFF_NOARP)) {
|
||||
memset(eth->h_dest, 0, ETH_ALEN);
|
||||
eth_zero_addr(eth->h_dest);
|
||||
return ETH_HLEN;
|
||||
}
|
||||
|
||||
@ -357,7 +357,7 @@ void ether_setup(struct net_device *dev)
|
||||
dev->flags = IFF_BROADCAST|IFF_MULTICAST;
|
||||
dev->priv_flags |= IFF_TX_SKB_SHARING;
|
||||
|
||||
memset(dev->broadcast, 0xFF, ETH_ALEN);
|
||||
eth_broadcast_addr(dev->broadcast);
|
||||
|
||||
}
|
||||
EXPORT_SYMBOL(ether_setup);
|
||||
|
Loading…
Reference in New Issue
Block a user