Loading kernel/printk/printk.c +8 −0 Original line number Diff line number Diff line Loading @@ -56,6 +56,10 @@ #include "braille.h" #include "internal.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 */ Loading Loading @@ -1842,6 +1846,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--; Loading Loading
kernel/printk/printk.c +8 −0 Original line number Diff line number Diff line Loading @@ -56,6 +56,10 @@ #include "braille.h" #include "internal.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 */ Loading Loading @@ -1842,6 +1846,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--; Loading