altera_jtag_uart: 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
fe524569d4
commit
18c3f27016
@ -97,8 +97,9 @@ static int altera_jtaguart_ofdata_to_platdata(struct udevice *dev)
|
||||
{
|
||||
struct altera_jtaguart_platdata *plat = dev_get_platdata(dev);
|
||||
|
||||
plat->regs = ioremap(dev_get_addr(dev),
|
||||
sizeof(struct altera_jtaguart_regs));
|
||||
plat->regs = map_physmem(dev_get_addr(dev),
|
||||
sizeof(struct altera_jtaguart_regs),
|
||||
MAP_NOCACHE);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user