From ec3902919307f1e1defbefa177a9298f0ddb7e53 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Wed, 10 Jul 2013 23:08:08 -0700 Subject: [PATCH] bootm: Remove extra OK message This is not needed as we already print 'OK' later in all cases. Signed-off-by: Simon Glass --- common/cmd_bootm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 306c8f395a..72d8837cd5 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -396,7 +396,6 @@ static int bootm_load_os(bootm_headers_t *images, unsigned long *load_end, memmove_wd(load_buf, image_buf, image_len, CHUNKSZ); } *load_end = load + image_len; - puts("OK\n"); break; #ifdef CONFIG_GZIP case IH_COMP_GZIP: -- 2.39.2