1
0
Fork 0

8021q: 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>
wifi-calibration
Joe Perches 2015-03-02 19:54:52 -08:00 committed by David S. Miller
parent 3b6ed26d8b
commit 423049ab1e
1 changed files with 1 additions and 1 deletions

View File

@ -792,5 +792,5 @@ void vlan_setup(struct net_device *dev)
dev->destructor = vlan_dev_free;
dev->ethtool_ops = &vlan_ethtool_ops;
memset(dev->broadcast, 0, ETH_ALEN);
eth_zero_addr(dev->broadcast);
}