Commit 157c9f40 authored by Cédric Le Goater's avatar Cédric Le Goater Committed by Michael Ellerman

powerpc/smp: Make debugger_ipi_callback() static

debugger_ipi_callback() is a local routine used as a NMI IPI handler and
does not need to be external.

It fixes this W=1 compile error :

../arch/powerpc/kernel/smp.c:579:6: error: no previous prototype for ‘debugger_ipi_callback’ [-Werror=missing-prototypes]
  579 | void debugger_ipi_callback(struct pt_regs *regs)
      |      ^~~~~~~~~~~~~~~~~~~~~
Signed-off-by: default avatarCédric Le Goater <clg@kaod.org>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20210104143206.695198-10-clg@kaod.org
parent cd7aa5d2
...@@ -577,7 +577,7 @@ void tick_broadcast(const struct cpumask *mask) ...@@ -577,7 +577,7 @@ void tick_broadcast(const struct cpumask *mask)
#endif #endif
#ifdef CONFIG_DEBUGGER #ifdef CONFIG_DEBUGGER
void debugger_ipi_callback(struct pt_regs *regs) static void debugger_ipi_callback(struct pt_regs *regs)
{ {
debugger_ipi(regs); debugger_ipi(regs);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment