From: Atsushi Nemoto Date: Sun, 18 Feb 2007 15:54:27 +0000 (+0900) Subject: [MIPS] Make kernel_thread_helper() static X-Git-Tag: v2.6.21-rc1~64^2~4 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=db0b937daf9bee741aa8fd488ea657872b9579fe;p=safe%2Fjmp%2Flinux-2.6 [MIPS] Make kernel_thread_helper() static Signed-off-by: Atsushi Nemoto Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c index 9704c21..a669089 100644 --- a/arch/mips/kernel/process.c +++ b/arch/mips/kernel/process.c @@ -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)); }