Commit 144e2643 authored by Kamal Heib's avatar Kamal Heib Committed by Greg Kroah-Hartman

staging: mt7621-eth: Use eth_hw_addr_random()

Use eth_hw_addr_random() to set a random dev_addr and update
addr_assign_type.

Fixes: e3cbf478 ('staging: mt7621-eth: add the drivers core files')
Signed-off-by: default avatarKamal Heib <kamalheib1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 85e1d426
...@@ -1822,10 +1822,9 @@ static int __init mtk_init(struct net_device *dev) ...@@ -1822,10 +1822,9 @@ static int __init mtk_init(struct net_device *dev)
/* If the mac address is invalid, use random mac address */ /* If the mac address is invalid, use random mac address */
if (!is_valid_ether_addr(dev->dev_addr)) { if (!is_valid_ether_addr(dev->dev_addr)) {
random_ether_addr(dev->dev_addr); eth_hw_addr_random(dev);
dev_err(eth->dev, "generated random MAC address %pM\n", dev_err(eth->dev, "generated random MAC address %pM\n",
dev->dev_addr); dev->dev_addr);
dev->addr_assign_type = NET_ADDR_RANDOM;
} }
mac->hw->soc->set_mac(mac, dev->dev_addr); mac->hw->soc->set_mac(mac, dev->dev_addr);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment