aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/macvlan.c
diff options
context:
space:
mode:
authorJiri Pirko <jiri@resnulli.us>2012-12-31 22:30:17 -0500
committerDavid S. Miller <davem@davemloft.net>2013-01-04 01:37:36 -0500
commit15c6ff3bc0ff3464a8c7efcdea09c86454571622 (patch)
treece49a0d1f0b5f4cd075d3df0875c0bf0a44ee4ad /drivers/net/macvlan.c
parentfbdeca2d7753aa1ab929aeb77ccc46489eed02b9 (diff)
net: remove unnecessary NET_ADDR_RANDOM "bitclean"
NET_ADDR_SET is set in dev_set_mac_address() no need to alter dev->addr_assign_type value in drivers. Signed-off-by: Jiri Pirko <jiri@resnulli.us> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/macvlan.c')
-rw-r--r--drivers/net/macvlan.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c
index 68a43fe602e7..80c6f927a7b4 100644
--- a/drivers/net/macvlan.c
+++ b/drivers/net/macvlan.c
@@ -375,7 +375,6 @@ static int macvlan_set_mac_address(struct net_device *dev, void *p)
375 375
376 if (!(dev->flags & IFF_UP)) { 376 if (!(dev->flags & IFF_UP)) {
377 /* Just copy in the new address */ 377 /* Just copy in the new address */
378 dev->addr_assign_type &= ~NET_ADDR_RANDOM;
379 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN); 378 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
380 } else { 379 } else {
381 /* Rehash and update the device filters */ 380 /* Rehash and update the device filters */