altera_pio: 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
8ed38fa50c
commit
079bfc5db4
|
@ -89,8 +89,9 @@ static int altera_pio_ofdata_to_platdata(struct udevice *dev)
|
||||||
{
|
{
|
||||||
struct altera_pio_platdata *plat = dev_get_platdata(dev);
|
struct altera_pio_platdata *plat = dev_get_platdata(dev);
|
||||||
|
|
||||||
plat->regs = ioremap(dev_get_addr(dev),
|
plat->regs = map_physmem(dev_get_addr(dev),
|
||||||
sizeof(struct altera_pio_regs));
|
sizeof(struct altera_pio_regs),
|
||||||
|
MAP_NOCACHE);
|
||||||
plat->gpio_count = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
|
plat->gpio_count = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
|
||||||
"altr,gpio-bank-width", 32);
|
"altr,gpio-bank-width", 32);
|
||||||
plat->bank_name = fdt_getprop(gd->fdt_blob, dev->of_offset,
|
plat->bank_name = fdt_getprop(gd->fdt_blob, dev->of_offset,
|
||||||
|
|
Loading…
Reference in New Issue