aboutsummaryrefslogtreecommitdiffstats
path: root/arch/riscv/kernel/signal.c
diff options
context:
space:
mode:
authorConor Dooley <conor.dooley@microchip.com>2022-08-14 15:12:37 +0100
committerPalmer Dabbelt <palmer@rivosinc.com>2022-08-18 14:42:52 -0700
commitb5c3aca86d2698c4850b6ee8b341938025d2780c (patch)
treedc0b5c6c73b270e8e32db63f37e9b025ab0e5030 /arch/riscv/kernel/signal.c
parentLinux 6.0-rc1 (diff)
downloadlinux-dev-b5c3aca86d2698c4850b6ee8b341938025d2780c.tar.xz
linux-dev-b5c3aca86d2698c4850b6ee8b341938025d2780c.zip
riscv: signal: fix missing prototype warning
Fix the warning: arch/riscv/kernel/signal.c:316:27: warning: no previous prototype for function 'do_notify_resume' [-Wmissing-prototypes] asmlinkage __visible void do_notify_resume(struct pt_regs *regs, All other functions in the file are static & none of the existing headers stood out as an obvious location. Create signal.h to hold the declaration. Fixes: e2c0cdfba7f6 ("RISC-V: User-facing API") Signed-off-by: Conor Dooley <conor.dooley@microchip.com> Cc: stable@vger.kernel.org Link: https://lore.kernel.org/r/20220814141237.493457-4-mail@conchuod.ie Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
Diffstat (limited to 'arch/riscv/kernel/signal.c')
-rw-r--r--arch/riscv/kernel/signal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/riscv/kernel/signal.c b/arch/riscv/kernel/signal.c
index 38b05ca6fe66..5a2de6b6f882 100644
--- a/arch/riscv/kernel/signal.c
+++ b/arch/riscv/kernel/signal.c
@@ -15,6 +15,7 @@
#include <asm/ucontext.h>
#include <asm/vdso.h>
+#include <asm/signal.h>
#include <asm/signal32.h>
#include <asm/switch_to.h>
#include <asm/csr.h>