diff options
author | Joe Perches <joe@perches.com> | 2018-06-22 19:51:00 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-06-23 03:49:14 +0200 |
commit | 6c1f0a1ffb7c2b0501521b9fc1f53b4109f1791b (patch) | |
tree | 681b06d46c984ad460150cb9ac4011e8b58c686e /drivers/net/ethernet/microchip | |
parent | net: phy: Allow compile test of GPIO consumers if !GPIOLIB (diff) | |
download | linux-6c1f0a1ffb7c2b0501521b9fc1f53b4109f1791b.tar.xz linux-6c1f0a1ffb7c2b0501521b9fc1f53b4109f1791b.zip |
net: drivers/net: Convert random_ether_addr to eth_random_addr
random_ether_addr is a #define for eth_random_addr which is
generally preferred in kernel code by ~3:1
Convert the uses of random_ether_addr to enable removing the #define
Miscellanea:
o Convert &vfmac[0] to equivalent vfmac and avoid unnecessary line wrap
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/microchip')
-rw-r--r-- | drivers/net/ethernet/microchip/lan743x_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/microchip/lan743x_main.c b/drivers/net/ethernet/microchip/lan743x_main.c index dd947e4dd3ce..e1747a490066 100644 --- a/drivers/net/ethernet/microchip/lan743x_main.c +++ b/drivers/net/ethernet/microchip/lan743x_main.c @@ -828,7 +828,7 @@ static int lan743x_mac_init(struct lan743x_adapter *adapter) } if (!mac_address_valid) - random_ether_addr(adapter->mac_address); + eth_random_addr(adapter->mac_address); lan743x_mac_set_address(adapter, adapter->mac_address); ether_addr_copy(netdev->dev_addr, adapter->mac_address); return 0; |