[MIPS] Make kernel_thread_helper() static
authorAtsushi Nemoto <anemo@mba.ocn.ne.jp>
Sun, 18 Feb 2007 15:54:27 +0000 (00:54 +0900)
committerRalf Baechle <ralf@linux-mips.org>
Sun, 18 Feb 2007 21:31:36 +0000 (21:31 +0000)
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/process.c

index 9704c21..a669089 100644 (file)
@@ -213,7 +213,7 @@ int dump_task_fpu (struct task_struct *t, elf_fpregset_t *fpr)
 /*
  * Create a kernel thread
  */
-ATTRIB_NORET void kernel_thread_helper(void *arg, int (*fn)(void *))
+static ATTRIB_NORET void kernel_thread_helper(void *arg, int (*fn)(void *))
 {
        do_exit(fn(arg));
 }