aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2022-11-25 22:34:42 +1100
committerMichael Ellerman <mpe@ellerman.id.au>2022-11-26 00:25:32 +1100
commit2e7ec190a0e38aaa8a6d87fd5f804ec07947febc (patch)
tree08633d199769e6ab4692a0dd4474ea23d50df080
parent89d21e259a94f7d5582ec675aa445f5a79f347e4 (diff)
downloadv9fs-2e7ec190a0e38aaa8a6d87fd5f804ec07947febc.tar.gz
powerpc/64s: Add missing declaration for machine_check_early_boot()
There's no declaration for machine_check_early_boot(), which leads to a build failure with W=1. Add one. Fixes: 2f5182cffa43 ("powerpc/64s: early boot machine check handler") Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20221125132521.2167039-1-mpe@ellerman.id.au
-rw-r--r--arch/powerpc/include/asm/interrupt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/interrupt.h b/arch/powerpc/include/asm/interrupt.h
index 4745bb9998bd7f..6d8492b6e2b833 100644
--- a/arch/powerpc/include/asm/interrupt.h
+++ b/arch/powerpc/include/asm/interrupt.h
@@ -602,6 +602,7 @@ ____##func(struct pt_regs *regs)
/* kernel/traps.c */
DECLARE_INTERRUPT_HANDLER_NMI(system_reset_exception);
#ifdef CONFIG_PPC_BOOK3S_64
+DECLARE_INTERRUPT_HANDLER_RAW(machine_check_early_boot);
DECLARE_INTERRUPT_HANDLER_ASYNC(machine_check_exception_async);
#endif
DECLARE_INTERRUPT_HANDLER_NMI(machine_check_exception);