altera_sysid: change ioremap to map_physmem

Change ioremap() to map_physmem(), as it is more used in u-boot.

Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Marek Vasut <marex@denx.de>
This commit is contained in:
Thomas Chou 2015-11-14 11:18:52 +08:00
parent 7313e21a1e
commit 9cbb923bac

View File

@ -76,8 +76,9 @@ static int altera_sysid_ofdata_to_platdata(struct udevice *dev)
{
struct altera_sysid_platdata *plat = dev_get_platdata(dev);
plat->regs = ioremap(dev_get_addr(dev),
sizeof(struct altera_sysid_regs));
plat->regs = map_physmem(dev_get_addr(dev),
sizeof(struct altera_sysid_regs),
MAP_NOCACHE);
return 0;
}