[U-Boot] [PATCH] dm: core: fix devfdt_remap_addr_index()

Cédric Le Goater clg at kaod.org
Tue Aug 14 10:48:11 UTC 2018


commit 30a90f56c3a2 ("dm: core: add functions to get memory-mapped I/O
addresses") introduced a devfdt_remap_addr_index() routine but it does
not make use of the index parameter.

Signed-off-by: Cédric Le Goater <clg at kaod.org>
---
 drivers/core/fdtaddr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/core/fdtaddr.c b/drivers/core/fdtaddr.c
index f8cdbd6688de..bfd9580050ca 100644
--- a/drivers/core/fdtaddr.c
+++ b/drivers/core/fdtaddr.c
@@ -138,7 +138,7 @@ void *devfdt_get_addr_ptr(struct udevice *dev)
 
 void *devfdt_remap_addr_index(struct udevice *dev, int index)
 {
-	fdt_addr_t addr = devfdt_get_addr(dev);
+	fdt_addr_t addr = devfdt_get_addr_index(dev, index);
 
 	if (addr == FDT_ADDR_T_NONE)
 		return NULL;
-- 
2.17.1



More information about the U-Boot mailing list