From 0448644294093325027b92b2500ee2e4212fa718 Mon Sep 17 00:00:00 2001 From: Jean-Christophe PLAGNIOL-VILLARD Date: Tue, 16 Oct 2012 12:05:53 +0200 Subject: console: use debug_ll before the console is available This will allow to have the same feature as earlyprintk in the kernel Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Signed-off-by: Sascha Hauer --- common/console.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common/console.c') diff --git a/common/console.c b/common/console.c index b4b3a9997f..2e8c9730e1 100644 --- a/common/console.c +++ b/common/console.c @@ -32,6 +32,7 @@ #include #include #include +#include LIST_HEAD(console_list); EXPORT_SYMBOL(console_list); @@ -280,6 +281,7 @@ void console_putc(unsigned int ch, char c) case CONSOLE_INITIALIZED_BUFFER: kfifo_putc(console_output_fifo, c); + PUTC_LL(c); return; case CONSOLE_INIT_FULL: -- cgit v1.2.3