summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/gen5200/console/console.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/powerpc/gen5200/console/console.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/c/src/lib/libbsp/powerpc/gen5200/console/console.c b/c/src/lib/libbsp/powerpc/gen5200/console/console.c
index e6ebb56bfb..e897d869fc 100644
--- a/c/src/lib/libbsp/powerpc/gen5200/console/console.c
+++ b/c/src/lib/libbsp/powerpc/gen5200/console/console.c
@@ -651,12 +651,17 @@ int mpc5200_uart_write(int minor, const char *buf, int len)
* Print functions prototyped in bspIo.h
*/
static void A_BSP_output_char( char c )
- {
+{
char cr = '\r';
-
- if(console_initialized == TRUE)
- {
+ /*
+ * If we are using U-Boot, then the console is already initialized
+ * and we can just poll bytes out at any time.
+ */
+ #if !defined(HAS_UBOOT)
+ if (console_initialized == FALSE )
+ return
+ #endif
#define PRINTK_WRITE mpc5200_uart_pollWrite
@@ -664,10 +669,7 @@ static void A_BSP_output_char( char c )
if( c == '\n' )
PRINTK_WRITE( PRINTK_MINOR, &cr, 1 );
-
- }
-
- }
+}
/*
***************