dect
/
linux-2.6
Archived
13
0
Fork 0

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: Roland Stigge <stigge@antcom.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
stigge@antcom.de 2012-03-28 12:36:26 +00:00 committed by David S. Miller
parent 6523cf9a46
commit cdaf0b835d
1 changed files with 1 additions and 1 deletions

View File

@ -1441,7 +1441,7 @@ static int lpc_eth_drv_probe(struct platform_device *pdev)
}
#endif
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 */
__lpc_eth_reset(pldat);