mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-16 14:08:45 +00:00
altera_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
18c3f27016
commit
1ec60b9321
1 changed files with 3 additions and 2 deletions
|
@ -89,8 +89,9 @@ static int altera_uart_ofdata_to_platdata(struct udevice *dev)
|
|||
{
|
||||
struct altera_uart_platdata *plat = dev_get_platdata(dev);
|
||||
|
||||
plat->regs = ioremap(dev_get_addr(dev),
|
||||
sizeof(struct altera_uart_regs));
|
||||
plat->regs = map_physmem(dev_get_addr(dev),
|
||||
sizeof(struct altera_uart_regs),
|
||||
MAP_NOCACHE);
|
||||
plat->uartclk = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
|
||||
"clock-frequency", 0);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue