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-01-16 00:31:23.531102120 -0800 +++ 25-akpm/arch/i386/kernel/traps.c 2005-01-16 00:31:23.535101512 -0800 @@ -986,7 +986,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; _