mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
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>
This commit is contained in:
parent
4c26ec17cf
commit
7313e21a1e
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue