projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2b259f
)
altera_qspi: change ioremap to map_physmem
author
Thomas Chou
<thomas@wytron.com.tw>
Sat, 14 Nov 2015 03:22:50 +0000
(11:22 +0800)
committer
Thomas Chou
<thomas@wytron.com.tw>
Wed, 18 Nov 2015 13:18:30 +0000
(21:18 +0800)
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>
drivers/mtd/altera_qspi.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/altera_qspi.c
b/drivers/mtd/altera_qspi.c
index 1826dc82729010a567cdbefaccfda52caf8c8092..50c6e0e58769fe8a290f3fbc3b4c34f500e759c9 100644
(file)
--- a/
drivers/mtd/altera_qspi.c
+++ b/
drivers/mtd/altera_qspi.c
@@
-243,7
+243,7
@@
static int altera_qspi_ofdata_to_platdata(struct udevice *dev)
addr = fdt_translate_address((void *)blob,
node, cell + idx);
size = fdt_addr_to_cpu(cell[idx + addrc]);
- base =
ioremap(addr, size
);
+ base =
map_physmem(addr, size, MAP_NOCACHE
);
len = strlen(list);
if (strcmp(list, "avl_csr") == 0) {
pdata->regs = base;