Browse Source

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 10 năm trước cách đây
mục cha
commit
423049ab1e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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);
 }