[U-Boot] [PATCH v2 1/4] libfdt: Allow the SPL to perform fdt address translation

Jean-Jacques Hiblot jjhiblot at ti.com
Mon Feb 13 15:17:47 UTC 2017


Use OF_TRANSLATE for both u-boot and SPL to tell whether fdt address
translation should be used.

Signed-off-by: Jean-Jacques Hiblot <jjhiblot at ti.com>
---

to: sjg at chromium.org

lib/fdtdec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/fdtdec.c b/lib/fdtdec.c
index 81f47ef..1edfbf2 100644
--- a/lib/fdtdec.c
+++ b/lib/fdtdec.c
@@ -112,7 +112,7 @@ fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
 		return FDT_ADDR_T_NONE;
 	}
 
-#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_OF_LIBFDT)
+#if CONFIG_IS_ENABLED(OF_TRANSLATE)
 	if (translate)
 		addr = fdt_translate_address(blob, node, prop_addr);
 	else
-- 
1.9.1



More information about the U-Boot mailing list