mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
net: macb: fix mapping of registers
Some architectures (MIPS) needs mapping to access IOMEM.
Fix that.
Fixes: f1dcc19b21
("net: macb: Convert to driver model")
Signed-off-by: Ramon Fried <ramon.fried@gmail.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
18bfc8fa84
commit
9043c4e0fc
1 changed files with 3 additions and 1 deletions
|
@ -1151,7 +1151,9 @@ static int macb_eth_ofdata_to_platdata(struct udevice *dev)
|
|||
{
|
||||
struct eth_pdata *pdata = dev_get_platdata(dev);
|
||||
|
||||
pdata->iobase = devfdt_get_addr(dev);
|
||||
pdata->iobase = (phys_addr_t)dev_remap_addr(dev);
|
||||
if (!pdata->iobase)
|
||||
return -EINVAL;
|
||||
|
||||
return macb_late_eth_ofdata_to_platdata(dev);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue