From: Rickard Strandqvist Date: Fri, 2 Jan 2015 20:34:21 +0000 (+0100) Subject: parisc: Remove unused function X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3d66b810eb7b6ad2e3eb47f03f28c3aba239f508;p=linux-beck.git parisc: Remove unused function Remove the function smp_send_start() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist Signed-off-by: Helge Deller --- diff --git a/arch/parisc/kernel/smp.c b/arch/parisc/kernel/smp.c index ceda229ea6c2..52e85973a283 100644 --- a/arch/parisc/kernel/smp.c +++ b/arch/parisc/kernel/smp.c @@ -230,9 +230,6 @@ send_IPI_allbutself(enum ipi_message_type op) inline void smp_send_stop(void) { send_IPI_allbutself(IPI_CPU_STOP); } -static inline void -smp_send_start(void) { send_IPI_allbutself(IPI_CPU_START); } - void smp_send_reschedule(int cpu) { send_IPI_single(cpu, IPI_RESCHEDULE); }