mirror of
https://github.com/torvalds/linux.git
synced 2024-12-20 18:11:47 +00:00
xilinx ll_temac: use eth_hw_addr_random() instead of random_ether_addr()
Use eth_hw_addr_random() instead of calling random_ether_addr() to set addr_assign_type correctly to NET_ADDR_RANDOM. Reset the state to NET_ADDR_PERM as soon as the MAC get changed via .ndo_set_mac_address. v2: reworked to prevent using an extra variable Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
baf1d3788e
commit
5a5e7c3644
@ -327,7 +327,9 @@ static int temac_set_mac_address(struct net_device *ndev, void *address)
|
||||
memcpy(ndev->dev_addr, address, ETH_ALEN);
|
||||
|
||||
if (!is_valid_ether_addr(ndev->dev_addr))
|
||||
random_ether_addr(ndev->dev_addr);
|
||||
eth_hw_addr_random(ndev);
|
||||
else
|
||||
dev->addr_assign_type &= ~NET_ADDR_RANDOM;
|
||||
|
||||
/* set up unicast MAC address filter set its mac address */
|
||||
mutex_lock(&lp->indirect_mutex);
|
||||
|
Loading…
Reference in New Issue
Block a user