diff mbox

[U-Boot,1/4] bootm: Remove extra OK message

Message ID 1373522891-7677-2-git-send-email-sjg@chromium.org
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Simon Glass July 11, 2013, 6:08 a.m. UTC
This is not needed as we already print 'OK' later in all cases.

Signed-off-by: Simon Glass <sjg@chromium.org>
---
 common/cmd_bootm.c | 1 -
 1 file changed, 1 deletion(-)
diff mbox

Patch

diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index a783cea..7a7c760 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: