1
0
Fork 0

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>
hifive-unleashed-5.1
Joe Perches 2015-03-02 19:54:56 -08:00 committed by David S. Miller
parent 211b85349c
commit afc130dd39
1 changed files with 2 additions and 2 deletions

View File

@ -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);