diff options
author | Simon Glass <sjg@chromium.org> | 2016-09-25 21:33:07 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-10-11 11:55:33 +0800 |
commit | 006bccbd0d757da78bfd2a244d96f61e0f7d2c66 (patch) | |
tree | c604130d7e9ee8998c5cfd8d03294b69eec9f239 /common | |
parent | 2cd11a23c8e01503032df34b99d563603a54f4d9 (diff) | |
download | u-boot-006bccbd0d757da78bfd2a244d96f61e0f7d2c66.zip u-boot-006bccbd0d757da78bfd2a244d96f61e0f7d2c66.tar.gz u-boot-006bccbd0d757da78bfd2a244d96f61e0f7d2c66.tar.bz2 |
board_f: Drop the extra fdtdec_prepare_fdt()
This is already called earlier, from fdtdec_setup(), so drop this unnecessary
call from the init sequence.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/common/board_f.c b/common/board_f.c index 1b88822..4b74835 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -912,9 +912,6 @@ static init_fnc_t init_sequence_f[] = { #ifdef CONFIG_SANDBOX sandbox_early_getopt_check, #endif -#ifdef CONFIG_OF_CONTROL - fdtdec_prepare_fdt, -#endif display_options, /* say that we are here */ display_text_info, /* show debugging info if required */ #if defined(CONFIG_MPC8260) |