diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-10 08:21:59 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-10-28 20:44:27 -0600 |
commit | 2c363cb0034284f26d6ae550b313fc2e62a41360 (patch) | |
tree | 9a16fa52cf92238051e3f39c20ed3edb8da365f5 /arch/x86/lib/bootm.c | |
parent | 61643ae61a8da145445778660042409903018506 (diff) | |
download | u-boot-imx-2c363cb0034284f26d6ae550b313fc2e62a41360.zip u-boot-imx-2c363cb0034284f26d6ae550b313fc2e62a41360.tar.gz u-boot-imx-2c363cb0034284f26d6ae550b313fc2e62a41360.tar.bz2 |
x86: Correct a few progress message nits
We should use puts() instead of printf() where possible. Also clarify
the setup.bin message.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/lib/bootm.c')
-rw-r--r-- | arch/x86/lib/bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/bootm.c b/arch/x86/lib/bootm.c index 46a1d96..86030cf 100644 --- a/arch/x86/lib/bootm.c +++ b/arch/x86/lib/bootm.c @@ -121,7 +121,7 @@ static int boot_prep_linux(bootm_headers_t *images) } else if (images->ep) { cmd_line_dest = (void *)images->ep + COMMAND_LINE_OFFSET; } else { - printf("## Kernel loading failed (no setup) ...\n"); + printf("## Kernel loading failed (missing x86 kernel setup) ...\n"); goto error; } |