projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8a1a30
)
qemu-ppce500: pass 'range_id' around in pci_map_region
author
Miao Yan
<yanmiaobest@gmail.com>
Mon, 21 Dec 2015 09:19:59 +0000
(
01:19
-0800)
committer
Tom Rini
<trini@konsulko.com>
Mon, 4 Jan 2016 17:25:34 +0000
(12:25 -0500)
In pci_map_region(), pass 'range_id' to fdt_read_range(),
otherwise the same address will be mapped again in other
calls to pci_map_region()
Signed-off-by: Miao Yan <yammiaobest@gmail.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Alexander Graf <agraf@suse.de>
board/freescale/qemu-ppce500/qemu-ppce500.c
patch
|
blob
|
history
diff --git
a/board/freescale/qemu-ppce500/qemu-ppce500.c
b/board/freescale/qemu-ppce500/qemu-ppce500.c
index a0fca0d88083105e07a71cb4cccd23ed0751f325..6cb5692eda6e9a368a4d7a2882887971edb5aed3 100644
(file)
--- a/
board/freescale/qemu-ppce500/qemu-ppce500.c
+++ b/
board/freescale/qemu-ppce500/qemu-ppce500.c
@@
-81,7
+81,7
@@
static int pci_map_region(void *fdt, int pci_node, int range_id,
ulong map_addr;
int r;
- r = fdt_read_range(fdt, pci_node,
0
, NULL, &addr, &size);
+ r = fdt_read_range(fdt, pci_node,
range_id
, NULL, &addr, &size);
if (r)
return r;