From: Ilya Yanok Date: Tue, 1 Nov 2011 13:16:03 +0000 (+0000) Subject: omap/spl: actually enable the console X-Git-Tag: v2011.12-rc1~228^2~51 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b88befa550c2eaf315c01648f0472634ead6abac;p=u-boot omap/spl: actually enable the console Currently OMAP SPL code does all the initialization but does not set the gd->have_console value so no output is actually performed. This patch sets gd->have_console to 1. Signed-off-by: Ilya Yanok Signed-off-by: Sandeep Paulraj --- diff --git a/arch/arm/cpu/armv7/omap-common/spl.c b/arch/arm/cpu/armv7/omap-common/spl.c index d37ca0ff5a..2c59d2b36b 100644 --- a/arch/arm/cpu/armv7/omap-common/spl.c +++ b/arch/arm/cpu/armv7/omap-common/spl.c @@ -156,6 +156,8 @@ void preloader_console_init(void) serial_init(); /* serial communications setup */ + gd->have_console = 1; + /* Avoid a second "U-Boot" coming from this string */ u_boot_rev = &u_boot_rev[7];