From: Adrian Bunk The patch below makes a needlessly global function static. Signed-off-by: Adrian Bunk Signed-off-by: Andrew Morton --- 25-akpm/arch/i386/kernel/traps.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/kernel/traps.c~26-patch-i386-trapsc-make-a-function-static arch/i386/kernel/traps.c --- 25/arch/i386/kernel/traps.c~26-patch-i386-trapsc-make-a-function-static 2005-02-22 18:19:36.000000000 -0800 +++ 25-akpm/arch/i386/kernel/traps.c 2005-02-22 18:19:36.000000000 -0800 @@ -891,7 +891,7 @@ fastcall void do_coprocessor_error(struc math_error((void __user *)regs->eip); } -void simd_math_error(void __user *eip) +static void simd_math_error(void __user *eip) { struct task_struct * task; siginfo_t info; _