1
0
Fork 0

altera_spi: 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>
utp
Thomas Chou 2015-11-14 11:17:25 +08:00
parent 4c26ec17cf
commit 7313e21a1e
1 changed files with 3 additions and 2 deletions

View File

@ -174,8 +174,9 @@ static int altera_spi_ofdata_to_platdata(struct udevice *bus)
{
struct altera_spi_platdata *plat = dev_get_platdata(bus);
plat->regs = ioremap(dev_get_addr(bus),
sizeof(struct altera_spi_regs));
plat->regs = map_physmem(dev_get_addr(bus),
sizeof(struct altera_spi_regs),
MAP_NOCACHE);
return 0;
}