Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cdaf0b83 authored by stigge@antcom.de's avatar stigge@antcom.de Committed by David S. Miller
Browse files

net: lpc_eth: Fix rename of dev_hw_addr_random



In parallel to the integration of lpc_eth.c, dev_hw_addr_random() has been
renamed to eth_hw_addr_random(). This patch fixes it also in the new driver
lpc_eth.c.

Signed-off-by: default avatarRoland Stigge <stigge@antcom.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6523cf9a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1441,7 +1441,7 @@ static int lpc_eth_drv_probe(struct platform_device *pdev)
	}
	}
#endif
#endif
	if (!is_valid_ether_addr(ndev->dev_addr))
	if (!is_valid_ether_addr(ndev->dev_addr))
		dev_hw_addr_random(ndev, ndev->dev_addr);
		eth_hw_addr_random(ndev);


	/* Reset the ethernet controller */
	/* Reset the ethernet controller */
	__lpc_eth_reset(pldat);
	__lpc_eth_reset(pldat);