diff options
author | Thomas Chou <thomas@wytron.com.tw> | 2015-11-14 10:38:09 +0800 |
---|---|---|
committer | Thomas Chou <thomas@wytron.com.tw> | 2015-11-18 21:18:30 +0800 |
commit | 1ec60b93212ca095822a6ae789e7f944d9692800 (patch) | |
tree | 72fa0e2e3dbc79cfdc399b001cf9a7ff5051dc19 /drivers/serial | |
parent | 18c3f27016c3c8ea3b68ce36084099a4a917dbef (diff) | |
download | u-boot-imx-1ec60b93212ca095822a6ae789e7f944d9692800.zip u-boot-imx-1ec60b93212ca095822a6ae789e7f944d9692800.tar.gz u-boot-imx-1ec60b93212ca095822a6ae789e7f944d9692800.tar.bz2 |
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>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/altera_uart.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/serial/altera_uart.c b/drivers/serial/altera_uart.c index 5d76c33..eff9c59 100644 --- a/drivers/serial/altera_uart.c +++ b/drivers/serial/altera_uart.c @@ -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); |