From: Thomas Chou Date: Sat, 14 Nov 2015 03:15:31 +0000 (+0800) Subject: altera_timer: change ioremap to map_physmem X-Git-Tag: v2016.01-rc2~299 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4c26ec17cf00f56cbfe6b8d3c1d9540bc2dc9d60;p=platform%2Fkernel%2Fu-boot.git altera_timer: change ioremap to map_physmem Change ioremap() to map_physmem(), as it is more used in u-boot. Signed-off-by: Thomas Chou Reviewed-by: Marek Vasut --- diff --git a/drivers/timer/altera_timer.c b/drivers/timer/altera_timer.c index 46a598a..971ed38 100644 --- a/drivers/timer/altera_timer.c +++ b/drivers/timer/altera_timer.c @@ -75,8 +75,9 @@ static int altera_timer_ofdata_to_platdata(struct udevice *dev) { struct altera_timer_platdata *plat = dev_get_platdata(dev); - plat->regs = ioremap(dev_get_addr(dev), - sizeof(struct altera_timer_regs)); + plat->regs = map_physmem(dev_get_addr(dev), + sizeof(struct altera_timer_regs), + MAP_NOCACHE); plat->clock_rate = fdtdec_get_int(gd->fdt_blob, dev->of_offset, "clock-frequency", 0);