diff options
author | Jakub Kicinski <kuba@kernel.org> | 2021-10-07 21:18:47 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-10-08 16:54:34 +0300 |
commit | 4d04cdc5ee4961022b1bdc76b76132787b8c9e5b (patch) | |
tree | 5eabc94964640c912a93b6517cd7ca34d704f746 /drivers/net/usb/smsc95xx.c | |
parent | ba882580f211dbe4fee7f010c9d38dd879db83a6 (diff) | |
download | linux-4d04cdc5ee4961022b1bdc76b76132787b8c9e5b.tar.xz |
ethernet: use platform_get_ethdev_address()
Use the new platform_get_ethdev_address() helper for the cases
where dev->dev_addr is passed in directly as the destination.
@@
expression dev, net;
@@
- eth_platform_get_mac_address(dev, net->dev_addr)
+ platform_get_ethdev_address(dev, net)
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/usb/smsc95xx.c')
-rw-r--r-- | drivers/net/usb/smsc95xx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c index 26b1bd8e845b..21a42a6527dc 100644 --- a/drivers/net/usb/smsc95xx.c +++ b/drivers/net/usb/smsc95xx.c @@ -756,8 +756,7 @@ static int smsc95xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd) static void smsc95xx_init_mac_address(struct usbnet *dev) { /* maybe the boot loader passed the MAC address in devicetree */ - if (!eth_platform_get_mac_address(&dev->udev->dev, - dev->net->dev_addr)) { + if (!platform_get_ethdev_address(&dev->udev->dev, dev->net)) { if (is_valid_ether_addr(dev->net->dev_addr)) { /* device tree values are valid so use them */ netif_dbg(dev, ifup, dev->net, "MAC address read from the device tree\n"); |