diff options
author | Rabin Vincent <rabin.vincent@stericsson.com> | 2011-08-26 09:56:23 +0530 |
---|---|---|
committer | Philippe Langlais <philippe.langlais@linaro.org> | 2012-03-19 08:59:24 +0100 |
commit | b79e00d74619958ca7bcac19e5cd7d2f4cdafe64 (patch) | |
tree | da06587067e100d5a17e0d40b93948a62c29d125 /kernel | |
parent | 965e86cf543a208c03c806e371bf80bd08fad336 (diff) |
printk: don't use CONFIG_DEBUG_LL
Change-Id: I1e3cf9a0e67c7941ec9a276678dcb61c01a2a957
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/printk.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/printk.c b/kernel/printk.c index 8170959158e..7137480b21f 100644 --- a/kernel/printk.c +++ b/kernel/printk.c @@ -884,6 +884,10 @@ asmlinkage int vprintk(const char *fmt, va_list args) printed_len += vscnprintf(printk_buf + printed_len, sizeof(printk_buf) - printed_len, fmt, args); +#ifdef CONFIG_PRINTK_LL + printascii(printk_buf); +#endif + p = printk_buf; /* Read log level and handle special printk prefix */ |