Commit 6fe243fe authored by Nicholas Piggin's avatar Nicholas Piggin Committed by Michael Ellerman

powerpc/smp: Make __smp_send_nmi_ipi() static

Signed-off-by: default avatarNicholas Piggin <npiggin@gmail.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 88b9a3d1
...@@ -462,7 +462,8 @@ static void do_smp_send_nmi_ipi(int cpu, bool safe) ...@@ -462,7 +462,8 @@ static void do_smp_send_nmi_ipi(int cpu, bool safe)
* - delay_us > 0 is the delay before giving up waiting for targets to * - delay_us > 0 is the delay before giving up waiting for targets to
* begin executing the handler, == 0 specifies indefinite delay. * begin executing the handler, == 0 specifies indefinite delay.
*/ */
int __smp_send_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us, bool safe) static int __smp_send_nmi_ipi(int cpu, void (*fn)(struct pt_regs *),
u64 delay_us, bool safe)
{ {
unsigned long flags; unsigned long flags;
int me = raw_smp_processor_id(); int me = raw_smp_processor_id();
......
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