diff options
author | Dmitri Vorobiev <dmitri.vorobiev@movial.fi> | 2008-05-29 17:57:08 +0300 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-07-15 18:44:29 +0100 |
commit | 07cdb78436d52416a582e645b9afb6e26f986bc9 (patch) | |
tree | 765906637fb87f35b171319562ac84d5a0fb7da3 /arch | |
parent | c88a8b4ab0e1a1f06938939d9ba42e9da6144ccb (diff) | |
download | kernel_samsung_espresso10-07cdb78436d52416a582e645b9afb6e26f986bc9.zip kernel_samsung_espresso10-07cdb78436d52416a582e645b9afb6e26f986bc9.tar.gz kernel_samsung_espresso10-07cdb78436d52416a582e645b9afb6e26f986bc9.tar.bz2 |
[MIPS] fix sparse warning about setup_early_printk()
This patch fixes the following sparse warning:
<<<<<<<<
arch/mips/kernel/early_printk.c:35:13: warning: symbol 'setup_early_printk'
was not declared. Should it be static?
<<<<<<<<
The fix is to define a prototype of the setup_early_printk() function and
to include the appropriate header into arch/mips/kernel/early_printk.c.
[Ralf: Sorted includes again]
Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/kernel/early_printk.c | 2 | ||||
-rw-r--r-- | arch/mips/kernel/setup.c | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/arch/mips/kernel/early_printk.c b/arch/mips/kernel/early_printk.c index 9dccfa4..9ae813e 100644 --- a/arch/mips/kernel/early_printk.c +++ b/arch/mips/kernel/early_printk.c @@ -10,6 +10,8 @@ #include <linux/console.h> #include <linux/init.h> +#include <asm/setup.h> + extern void prom_putchar(char); static void __init diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index c04e4e3..8af8486 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c @@ -550,11 +550,7 @@ void __init setup_arch(char **cmdline_p) prom_init(); #ifdef CONFIG_EARLY_PRINTK - { - extern void setup_early_printk(void); - - setup_early_printk(); - } + setup_early_printk(); #endif cpu_report(); check_bugs_early(); |