mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
bootm: fix conditional controlling call to fixup_silent_linux
This function is only defined if CONFIG_SILENT_CONSOLE is set and CONFIG_SILENT_U_BOOT_ONLY is not set, the call to it should be based on the same conditions. Signed-off-by: Paul B. Henson <henson@acm.org> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
8d51aacd8c
commit
bd4a3997f1
1 changed files with 1 additions and 1 deletions
|
|
@ -636,7 +636,7 @@ static int do_bootm_states(cmd_tbl_t *cmdtp, int flag, int argc,
|
|||
goto err;
|
||||
else if (ret == BOOTM_ERR_OVERLAP)
|
||||
ret = 0;
|
||||
#ifdef CONFIG_SILENT_CONSOLE
|
||||
#if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
|
||||
if (images->os.os == IH_OS_LINUX)
|
||||
fixup_silent_linux();
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue