summaryrefslogtreecommitdiffstats
path: root/drivers/timer
diff options
context:
space:
mode:
authorThomas Chou <thomas@wytron.com.tw>2015-11-14 11:15:31 +0800
committerThomas Chou <thomas@wytron.com.tw>2015-11-18 21:18:30 +0800
commit4c26ec17cf00f56cbfe6b8d3c1d9540bc2dc9d60 (patch)
treeb6d089cd46a1b76a83652920ea223185a040311e /drivers/timer
parent1ec60b93212ca095822a6ae789e7f944d9692800 (diff)
downloadtalos-obmc-uboot-4c26ec17cf00f56cbfe6b8d3c1d9540bc2dc9d60.tar.gz
talos-obmc-uboot-4c26ec17cf00f56cbfe6b8d3c1d9540bc2dc9d60.zip
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 <thomas@wytron.com.tw> Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers/timer')
-rw-r--r--drivers/timer/altera_timer.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/timer/altera_timer.c b/drivers/timer/altera_timer.c
index 46a598ae9f..971ed38b6b 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);
OpenPOWER on IntegriCloud