From: Tony Lindgren Date: Mon, 9 May 2005 21:10:26 +0000 (-0700) Subject: ARM: Make low-level printk work X-Git-Tag: firefly_0821_release~2958^2~130 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3200304ca37de8cdcce2b880c619a08537518592;p=firefly-linux-kernel-4.4.55.git ARM: Make low-level printk work Makes low-level printk work. Signed-off-by: Tony Lindgren --- diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c index 2ce8826f1053..eeee1032667f 100644 --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c @@ -55,6 +55,10 @@ #include "console_cmdline.h" #include "braille.h" +#ifdef CONFIG_DEBUG_LL +extern void printascii(char *); +#endif + int console_printk[4] = { CONSOLE_LOGLEVEL_DEFAULT, /* console_loglevel */ MESSAGE_LOGLEVEL_DEFAULT, /* default_message_loglevel */ @@ -1724,6 +1728,10 @@ asmlinkage int vprintk_emit(int facility, int level, */ text_len = vscnprintf(text, sizeof(textbuf), fmt, args); +#ifdef CONFIG_DEBUG_LL + printascii(text); +#endif + /* mark and strip a trailing newline */ if (text_len && text[text_len-1] == '\n') { text_len--;