summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAtsushi Nemoto2007-02-17 17:02:14 +0100
committerRalf Baechle2007-02-20 02:26:41 +0100
commitf49a747c4adadd96addf4dbf4a44f439513fb29b (patch)
tree77f4011884580229531670f53d3af8ef039b010d
parent[MIPS] Declare highstart_pfn, highend_pfn only if CONFIG_HIGHMEM=y (diff)
downloadkernel-qcow2-linux-f49a747c4adadd96addf4dbf4a44f439513fb29b.tar.gz
kernel-qcow2-linux-f49a747c4adadd96addf4dbf4a44f439513fb29b.tar.xz
kernel-qcow2-linux-f49a747c4adadd96addf4dbf4a44f439513fb29b.zip
[MIPS] Make some __setup functions static
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>
-rw-r--r--arch/mips/kernel/cpu-probe.c2
-rw-r--r--arch/mips/kernel/setup.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
index 50ed6d58ae71..ab755ea26c6a 100644
--- a/arch/mips/kernel/cpu-probe.c
+++ b/arch/mips/kernel/cpu-probe.c
@@ -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;
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c
index 394540fad769..11ab222a2e97 100644
--- a/arch/mips/kernel/setup.c
+++ b/arch/mips/kernel/setup.c
@@ -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;