dect
/
linux-2.6
Archived
13
0
Fork 0

[MIPS] Make kernel_thread_helper() static

Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Atsushi Nemoto 2007-02-19 00:54:27 +09:00 committed by Ralf Baechle
parent b6dcec9ba4
commit db0b937daf
1 changed files with 1 additions and 1 deletions

View 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));
}