summaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorThomas Chou <thomas@wytron.com.tw>2015-11-14 11:26:51 +0800
committerThomas Chou <thomas@wytron.com.tw>2015-11-18 21:18:30 +0800
commit079bfc5db419337f800996f8a49fc4039392dda2 (patch)
treecd2d1e7bc5e24239ac835acf9c956db9bac03584 /drivers/gpio
parent8ed38fa50c2a40851f6201bd795666a850617eb9 (diff)
downloadtalos-obmc-uboot-079bfc5db419337f800996f8a49fc4039392dda2.tar.gz
talos-obmc-uboot-079bfc5db419337f800996f8a49fc4039392dda2.zip
altera_pio: 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/gpio')
-rw-r--r--drivers/gpio/altera_pio.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpio/altera_pio.c b/drivers/gpio/altera_pio.c
index 7ceb80e951..6f42bf8a22 100644
--- a/drivers/gpio/altera_pio.c
+++ b/drivers/gpio/altera_pio.c
@@ -89,8 +89,9 @@ static int altera_pio_ofdata_to_platdata(struct udevice *dev)
{
struct altera_pio_platdata *plat = dev_get_platdata(dev);
- plat->regs = ioremap(dev_get_addr(dev),
- sizeof(struct altera_pio_regs));
+ plat->regs = map_physmem(dev_get_addr(dev),
+ sizeof(struct altera_pio_regs),
+ MAP_NOCACHE);
plat->gpio_count = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
"altr,gpio-bank-width", 32);
plat->bank_name = fdt_getprop(gd->fdt_blob, dev->of_offset,
OpenPOWER on IntegriCloud