Skip to content
Snippets Groups Projects
Commit 7313e21a authored by Thomas Chou's avatar Thomas Chou
Browse files

altera_spi: change ioremap to map_physmem


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

Signed-off-by: default avatarThomas Chou <thomas@wytron.com.tw>
Reviewed-by: default avatarMarek Vasut <marex@denx.de>
parent 4c26ec17
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment