summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorRabin Vincent <rabin.vincent@stericsson.com>2011-08-26 09:56:23 +0530
committerUlf Hansson <ulf.hansson@stericsson.com>2011-09-19 16:00:16 +0200
commit835fcc28a2098cb00e19a4eead3d8705b0f0d381 (patch)
tree5a9965fdee9ef4845836f074a1c20441ac2bd44c /kernel
parent32fad517bddb52bbc454d0b4cb8885eec81ff384 (diff)
printk: don't use CONFIG_DEBUG_LL
Change-Id: I1e3cf9a0e67c7941ec9a276678dcb61c01a2a957
Diffstat (limited to 'kernel')
-rw-r--r--kernel/printk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/printk.c b/kernel/printk.c
index 6bf4e29579c..c37364b2003 100644
--- a/kernel/printk.c
+++ b/kernel/printk.c
@@ -54,7 +54,7 @@ void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...)
#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
-#ifdef CONFIG_DEBUG_LL
+#ifdef CONFIG_PRINTK_LL
extern void printascii(char *);
#endif
@@ -924,7 +924,7 @@ 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_DEBUG_LL
+#ifdef CONFIG_PRINTK_LL
printascii(printk_buf);
#endif