[U-Boot] [PATCH v2 16/55] dm: spl: Don't set up device tree with of-platdata
Simon Glass
sjg at chromium.org
Mon Jun 13 07:32:57 CEST 2016
When this feature is enabled, we should not access the device tree.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
Changes in v2: None
common/spl/spl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/spl/spl.c b/common/spl/spl.c
index 5fbf101..59f41a1 100644
--- a/common/spl/spl.c
+++ b/common/spl/spl.c
@@ -202,7 +202,7 @@ int spl_init(void)
gd->malloc_limit = CONFIG_SYS_MALLOC_F_LEN;
gd->malloc_ptr = 0;
#endif
- if (CONFIG_IS_ENABLED(OF_CONTROL)) {
+ if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
ret = fdtdec_setup();
if (ret) {
debug("fdtdec_setup() returned error %d\n", ret);
--
2.8.0.rc3.226.g39d4020
More information about the U-Boot
mailing list