diff options
author | Jakub Kicinski <kuba@kernel.org> | 2021-10-07 03:06:56 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-10-07 14:39:51 +0200 |
commit | 9ca01b25dffffecf6c59339aad6b4736680e9fa3 (patch) | |
tree | 09db4109c0c73f94baa22101c10af5a01f61fcdf /drivers/net/ethernet/socionext | |
parent | of: net: add a helper for loading netdev->dev_addr (diff) | |
download | linux-9ca01b25dffffecf6c59339aad6b4736680e9fa3.tar.xz linux-9ca01b25dffffecf6c59339aad6b4736680e9fa3.zip |
ethernet: use of_get_ethdev_address()
Use the new of_get_ethdev_address() helper for the cases
where dev->dev_addr is passed in directly as the destination.
@@
expression dev, np;
@@
- of_get_mac_address(np, dev->dev_addr)
+ of_get_ethdev_address(np, dev)
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/socionext')
-rw-r--r-- | drivers/net/ethernet/socionext/sni_ave.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/socionext/sni_ave.c b/drivers/net/ethernet/socionext/sni_ave.c index ae31ed93aaf0..4b0fe0f58bbf 100644 --- a/drivers/net/ethernet/socionext/sni_ave.c +++ b/drivers/net/ethernet/socionext/sni_ave.c @@ -1599,7 +1599,7 @@ static int ave_probe(struct platform_device *pdev) ndev->max_mtu = AVE_MAX_ETHFRAME - (ETH_HLEN + ETH_FCS_LEN); - ret = of_get_mac_address(np, ndev->dev_addr); + ret = of_get_ethdev_address(np, ndev); if (ret) { /* if the mac address is invalid, use random mac address */ eth_hw_addr_random(ndev); |