ARM: Make low-level printk work

Makes low-level printk work.

Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
Tony Lindgren 2005-05-09 14:10:26 -07:00 committed by John Stultz
parent 219757ca8b
commit 3200304ca3

View File

@ -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--;