diff options
author | Tony Lindgren <tony@atomide.com> | 2005-05-09 14:10:26 -0700 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@stericsson.com> | 2011-09-19 15:14:39 +0200 |
commit | d4e5d740706f1e190cd5130727cdf4fd638476b9 (patch) | |
tree | 559d5a68463fffdc92246f75ef18ed49a488534b | |
parent | 473e0840baec34698df5c69f8804fc1cb0f961c7 (diff) |
ARM: Make low-level printk work
Makes low-level printk work.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Mian Yousaf Kaukab <mian.yousaf.kaukab@stericsson.com>
-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 90ddb222c12..d6aa909848d 100644 --- a/kernel/printk.c +++ b/kernel/printk.c @@ -55,6 +55,10 @@ 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 CONFIG_DEFAULT_MESSAGE_LOGLEVEL |