Explorar o código

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>
Joe Perches %!s(int64=10) %!d(string=hai) anos
pai
achega
423049ab1e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      net/8021q/vlan_dev.c

+ 1 - 1
net/8021q/vlan_dev.c

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