summaryrefslogtreecommitdiffstats
path: root/drivers/misc
diff options
context:
space:
mode:
authorThomas Chou <thomas@wytron.com.tw>2015-11-14 11:18:52 +0800
committerThomas Chou <thomas@wytron.com.tw>2015-11-18 21:18:30 +0800
commit9cbb923bac590096ae50e25b30a83cb36f27d229 (patch)
treede4e28d860496a794dcf7d6572d8afe7ea283280 /drivers/misc
parent7313e21a1e226daac277fcd8a19c29fb46bed74d (diff)
downloadblackbird-obmc-uboot-9cbb923bac590096ae50e25b30a83cb36f27d229.tar.gz
blackbird-obmc-uboot-9cbb923bac590096ae50e25b30a83cb36f27d229.zip
altera_sysid: 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/misc')
-rw-r--r--drivers/misc/altera_sysid.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/misc/altera_sysid.c b/drivers/misc/altera_sysid.c
index 737520f247..2d0fa2a7dd 100644
--- a/drivers/misc/altera_sysid.c
+++ b/drivers/misc/altera_sysid.c
@@ -76,8 +76,9 @@ static int altera_sysid_ofdata_to_platdata(struct udevice *dev)
{
struct altera_sysid_platdata *plat = dev_get_platdata(dev);
- plat->regs = ioremap(dev_get_addr(dev),
- sizeof(struct altera_sysid_regs));
+ plat->regs = map_physmem(dev_get_addr(dev),
+ sizeof(struct altera_sysid_regs),
+ MAP_NOCACHE);
return 0;
}
OpenPOWER on IntegriCloud