Revert "ARM: Make low-level printk work"

This reverts commit ffdcd796e23c86d2cfeb25cb2d140f11d5fd6411.
This feature is replaced by passing 'earlyprintk' on the
kernel command line.

Change-Id: I2d4f2812e39b1c7afc061f106863b63710762fa7
Signed-off-by: Stepan Moskovchenko <stepanm@codeaurora.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
Stepan Moskovchenko 2011-05-23 16:05:46 -07:00 committed by Stephen Boyd
parent 175bcd2219
commit 95424a42c8

View file

@ -51,10 +51,6 @@
#define CREATE_TRACE_POINTS
#include <trace/events/printk.h>
#ifdef CONFIG_DEBUG_LL
extern void printascii(char *);
#endif
/* printk's without a loglevel use this.. */
#define DEFAULT_MESSAGE_LOGLEVEL CONFIG_DEFAULT_MESSAGE_LOGLEVEL
@ -1556,10 +1552,6 @@ 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--;