From: Tom Rini Date: Mon, 27 Aug 2012 21:57:26 +0000 (-0700) Subject: SPL: Make un-supported boot device puts a debug instead X-Git-Tag: v2012.10-rc2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1292eaf3530257e24c77979295892718662eda4b;p=platform%2Fkernel%2Fu-boot.git SPL: Make un-supported boot device puts a debug instead Signed-off-by: Tom Rini --- diff --git a/common/spl/spl.c b/common/spl/spl.c index 14f7bdb..3aa0703 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -174,10 +174,8 @@ void board_init_r(gd_t *dummy1, ulong dummy2) break; #endif default: - puts("SPL: Un-supported Boot Device\n"); - debug("Found: %d\n", boot_device); + debug("SPL: Un-supported Boot Device\n"); hang(); - break; } switch (spl_image.os) {