diff options
Diffstat (limited to 'arch/arm/mach-ep93xx')
-rw-r--r-- | arch/arm/mach-ep93xx/core.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/mach-ep93xx/core.c b/arch/arm/mach-ep93xx/core.c index 68ac0545f570..4c38941a92c7 100644 --- a/arch/arm/mach-ep93xx/core.c +++ b/arch/arm/mach-ep93xx/core.c | |||
@@ -541,10 +541,8 @@ static struct platform_device ep93xx_eth_device = { | |||
541 | 541 | ||
542 | void __init ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr) | 542 | void __init ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr) |
543 | { | 543 | { |
544 | if (copy_addr) { | 544 | if (copy_addr) |
545 | memcpy(data->dev_addr, | 545 | memcpy_fromio(data->dev_addr, EP93XX_ETHERNET_BASE + 0x50, 6); |
546 | (void *)(EP93XX_ETHERNET_BASE + 0x50), 6); | ||
547 | } | ||
548 | 546 | ||
549 | ep93xx_eth_data = *data; | 547 | ep93xx_eth_data = *data; |
550 | platform_device_register(&ep93xx_eth_device); | 548 | platform_device_register(&ep93xx_eth_device); |