net: usb: Use eth_random_addr
Convert the existing uses of random_ether_addr to the new eth_random_addr. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7efd26d0db
commit
c7e12ead5f
|
@ -616,7 +616,7 @@ static void smsc75xx_init_mac_address(struct usbnet *dev)
|
|||
|
||||
/* no eeprom, or eeprom values are invalid. generate random MAC */
|
||||
eth_hw_addr_random(dev->net);
|
||||
netif_dbg(dev, ifup, dev->net, "MAC address set to random_ether_addr");
|
||||
netif_dbg(dev, ifup, dev->net, "MAC address set to eth_random_addr");
|
||||
}
|
||||
|
||||
static int smsc75xx_set_mac_address(struct usbnet *dev)
|
||||
|
|
|
@ -647,7 +647,7 @@ static void smsc95xx_init_mac_address(struct usbnet *dev)
|
|||
|
||||
/* no eeprom, or eeprom values are invalid. generate random MAC */
|
||||
eth_hw_addr_random(dev->net);
|
||||
netif_dbg(dev, ifup, dev->net, "MAC address set to random_ether_addr\n");
|
||||
netif_dbg(dev, ifup, dev->net, "MAC address set to eth_random_addr\n");
|
||||
}
|
||||
|
||||
static int smsc95xx_set_mac_address(struct usbnet *dev)
|
||||
|
|
|
@ -1593,7 +1593,7 @@ static int __init usbnet_init(void)
|
|||
BUILD_BUG_ON(
|
||||
FIELD_SIZEOF(struct sk_buff, cb) < sizeof(struct skb_data));
|
||||
|
||||
random_ether_addr(node_id);
|
||||
eth_random_addr(node_id);
|
||||
return 0;
|
||||
}
|
||||
module_init(usbnet_init);
|
||||
|
|
Loading…
Reference in New Issue