[SPARC64]: More sparse warning fixes in process.c

arch/sparc64/kernel/process.c:504:17: warning: symbol 'sparc_do_fork' was not declared. Should it be static?
arch/sparc64/kernel/process.c:655:5: warning: symbol 'dump_fpu' was not declared. Should it be static?
arch/sparc64/kernel/process.c:708:16: warning: symbol 'sparc_execve' was not declared. Should it be static?

Signed-off-by: David S. Miller <davem@davemloft.net>

+15
+2
arch/sparc64/kernel/process.c
··· 30 #include <linux/tick.h> 31 #include <linux/init.h> 32 #include <linux/cpu.h> 33 34 #include <asm/oplib.h> 35 #include <asm/uaccess.h> ··· 49 #include <asm/hypervisor.h> 50 #include <asm/sstate.h> 51 #include <asm/reboot.h> 52 53 /* #define VERBOSE_SHOWREGS */ 54
··· 30 #include <linux/tick.h> 31 #include <linux/init.h> 32 #include <linux/cpu.h> 33 + #include <linux/elfcore.h> 34 35 #include <asm/oplib.h> 36 #include <asm/uaccess.h> ··· 48 #include <asm/hypervisor.h> 49 #include <asm/sstate.h> 50 #include <asm/reboot.h> 51 + #include <asm/syscalls.h> 52 53 /* #define VERBOSE_SHOWREGS */ 54
+13
include/asm-sparc64/syscalls.h
···
··· 1 + #ifndef _SPARC64_SYSCALLS_H 2 + #define _SPARC64_SYSCALLS_H 3 + 4 + struct pt_regs; 5 + 6 + extern asmlinkage long sparc_do_fork(unsigned long clone_flags, 7 + unsigned long stack_start, 8 + struct pt_regs *regs, 9 + unsigned long stack_size); 10 + 11 + extern asmlinkage int sparc_execve(struct pt_regs *regs); 12 + 13 + #endif /* _SPARC64_SYSCALLS_H */