diff options
author | Wu Zhangjin <wuzj@lemote.com> | 2009-07-02 11:18:09 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-09-17 14:07:44 -0400 |
commit | efc49ef556b135739386c64fd5c2ecd99b300446 (patch) | |
tree | e130cd856b0dee3063cfb0002014bbd56be6aff9 /arch/mips | |
parent | eb42306b7a45703815e898a4742507c08ca01860 (diff) |
MIPS: Loongson: Remove existing early_printk implementation
Removes the existing implementation of early_printk for fulong. The old
implementation was based on the outdated board-specific dbg_io.c.
Since commit 8d60a903d986ffa26c41f0092320a3b9da20bfaf dbg_io.c is not longer
needed; it will be removed by the next patch, and a new implementation of
early_printk will be added later.
Signed-off-by: Wu Zhangjin <wuzj@lemote.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/lemote/lm2e/prom.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/mips/lemote/lm2e/prom.c b/arch/mips/lemote/lm2e/prom.c index 7edc15dfed6c..d78cedf28c1f 100644 --- a/arch/mips/lemote/lm2e/prom.c +++ b/arch/mips/lemote/lm2e/prom.c | |||
@@ -21,7 +21,6 @@ | |||
21 | extern unsigned long bus_clock; | 21 | extern unsigned long bus_clock; |
22 | extern unsigned long cpu_clock_freq; | 22 | extern unsigned long cpu_clock_freq; |
23 | extern unsigned int memsize, highmemsize; | 23 | extern unsigned int memsize, highmemsize; |
24 | extern int putDebugChar(unsigned char byte); | ||
25 | 24 | ||
26 | static int argc; | 25 | static int argc; |
27 | /* pmon passes arguments in 32bit pointers */ | 26 | /* pmon passes arguments in 32bit pointers */ |
@@ -90,8 +89,3 @@ do { \ | |||
90 | void __init prom_free_prom_memory(void) | 89 | void __init prom_free_prom_memory(void) |
91 | { | 90 | { |
92 | } | 91 | } |
93 | |||
94 | void prom_putchar(char c) | ||
95 | { | ||
96 | putDebugChar(c); | ||
97 | } | ||