From 7952dc3de81d0cc36c46e9ba54d2206ec7972f0d Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E9=BB=84=E6=B6=9B?= Date: Sat, 30 Jul 2011 23:09:55 +0800 Subject: [PATCH] Revert "ARM: Make low-level printk work" This reverts commit 39078ee4d12d5b33108f9c56c24cc9c31d1d54bd. --- kernel/printk.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/kernel/printk.c b/kernel/printk.c index a508e2939ac5..504f26471fd1 100644 --- a/kernel/printk.c +++ b/kernel/printk.c @@ -51,10 +51,6 @@ void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...) #define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT) -#ifdef CONFIG_DEBUG_LL -extern void printascii(char *); -#endif - /* printk's without a loglevel use this.. */ #define DEFAULT_MESSAGE_LOGLEVEL 4 /* KERN_WARNING */ @@ -718,9 +714,6 @@ 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 - printascii(printk_buf); -#endif p = printk_buf; -- 2.34.1