signal.c defines the function sys32_x32_rt_sigreturn, which is used in this file and some assembly. So add a prototype for the function.
This eliminates the following warning: arch/x86/kernel/signal.c:784:17: warning: no previous prototype for ‘sys32_x32_rt_sigreturn’ [-Wmissing-prototypes] Signed-off-by: Darshana Padmadas <[email protected]> --- arch/x86/kernel/signal.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/x86/kernel/signal.c b/arch/x86/kernel/signal.c index 0a62df4..2625c23 100644 --- a/arch/x86/kernel/signal.c +++ b/arch/x86/kernel/signal.c @@ -781,6 +781,9 @@ void signal_fault(struct pt_regs *regs, void __user *frame, char *where) } #ifdef CONFIG_X86_X32_ABI + +asmlinkage long sys32_x32_rt_sigreturn(void); + asmlinkage long sys32_x32_rt_sigreturn(void) { struct pt_regs *regs = current_pt_regs(); -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

