ARM: remove some dead code
authorArd Biesheuvel <ardb@kernel.org>
Tue, 5 Oct 2021 07:15:34 +0000 (09:15 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Aug 2022 12:24:23 +0000 (14:24 +0200)
[ Upstream commit 08572cd41955166e387d9b4984294d37f8f7526c ]

This code appears to be no longer used so let's get rid of it.

Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Tested-by: Keith Packard <keithpac@amazon.com>
Tested-by: Marc Zyngier <maz@kernel.org>
Tested-by: Vladimir Murzin <vladimir.murzin@arm.com> # ARMv7M
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/arm/include/asm/entry-macro-multi.S
arch/arm/include/asm/smp.h
arch/arm/kernel/smp.c

index dfc6bfa..24486da 100644 (file)
        @
        badrne  lr, 1b
        bne     asm_do_IRQ
-
-#ifdef CONFIG_SMP
-       /*
-        * XXX
-        *
-        * this macro assumes that irqstat (r2) and base (r6) are
-        * preserved from get_irqnr_and_base above
-        */
-       ALT_SMP(test_for_ipi r0, r2, r6, lr)
-       ALT_UP_B(9997f)
-       movne   r1, sp
-       badrne  lr, 1b
-       bne     do_IPI
-#endif
-9997:
-       .endm
-
-       .macro  arch_irq_handler, symbol_name
-       .align  5
-       .global \symbol_name
-\symbol_name:
-       mov     r8, lr
-       arch_irq_handler_default
-       ret     r8
        .endm
index 5d508f5..fc11ddf 100644 (file)
@@ -25,11 +25,6 @@ struct seq_file;
 extern void show_ipi_list(struct seq_file *, int);
 
 /*
- * Called from assembly code, this handles an IPI.
- */
-asmlinkage void do_IPI(int ipinr, struct pt_regs *regs);
-
-/*
  * Called from C code, this handles an IPI.
  */
 void handle_IPI(int ipinr, struct pt_regs *regs);
index 842427f..23d369a 100644 (file)
@@ -622,11 +622,6 @@ static void ipi_complete(unsigned int cpu)
 /*
  * Main handler for inter-processor interrupts
  */
-asmlinkage void __exception_irq_entry do_IPI(int ipinr, struct pt_regs *regs)
-{
-       handle_IPI(ipinr, regs);
-}
-
 static void do_handle_IPI(int ipinr)
 {
        unsigned int cpu = smp_processor_id();