[MIPS] Make some __setup functions static
authorAtsushi Nemoto <anemo@mba.ocn.ne.jp>
Sat, 17 Feb 2007 16:02:14 +0000 (01:02 +0900)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 20 Feb 2007 01:26:41 +0000 (01:26 +0000)
This fixes some sparse warnings. ("warning: symbol 'foo' was not
declared. Should it be static?")

Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/cpu-probe.c
arch/mips/kernel/setup.c

index 50ed6d58ae71466552739ff3a2bce8a5068859a5..ab755ea26c6a252587b936fe04b5f472b0354402 100644 (file)
@@ -98,7 +98,7 @@ static void au1k_wait(void)
 
 static int __initdata nowait = 0;
 
-int __init wait_disable(char *s)
+static int __init wait_disable(char *s)
 {
        nowait = 1;
 
index 394540fad7699ef4e773f03ef30feb7301d7386b..11ab222a2e972226ab406d3aefa2093804f05311 100644 (file)
@@ -543,7 +543,7 @@ void __init setup_arch(char **cmdline_p)
 #endif
 }
 
-int __init fpu_disable(char *s)
+static int __init fpu_disable(char *s)
 {
        int i;
 
@@ -555,7 +555,7 @@ int __init fpu_disable(char *s)
 
 __setup("nofpu", fpu_disable);
 
-int __init dsp_disable(char *s)
+static int __init dsp_disable(char *s)
 {
        cpu_data[0].ases &= ~MIPS_ASE_DSP;