From: Simon Glass Date: Mon, 26 Sep 2016 03:33:07 +0000 (-0600) Subject: board_f: Drop the extra fdtdec_prepare_fdt() X-Git-Tag: v2016.11-rc2~11^2~24 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=006bccbd0d757da78bfd2a244d96f61e0f7d2c66;p=oweals%2Fu-boot.git 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 Reviewed-by: Bin Meng --- diff --git a/common/board_f.c b/common/board_f.c index 1b888228ca..4b7483503e 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -911,9 +911,6 @@ static init_fnc_t init_sequence_f[] = { console_init_f, /* stage 1 init of console */ #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 */