mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
dm: spl: Don't set up device tree with of-platdata
When this feature is enabled, we should not access the device tree. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
a091a8f084
commit
d223e0a822
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue