Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

arm64: Get rid of handle_IRQ

All the arm64 irqchip drivers have been converted to handle_domain_irq,
making it possible to remove the handle_IRQ stub entierely.

Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Link: https://lkml.kernel.org/r/1409047421-27649-26-git-send-email-marc.zyngier@arm.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>

authored by

Marc Zyngier and committed by
Jason Cooper
c59e1ef8 f978999f

-13
-2
arch/arm64/include/asm/hardirq.h
··· 47 47 irq_err_count++; 48 48 } 49 49 50 - extern void handle_IRQ(unsigned int, struct pt_regs *); 51 - 52 50 /* 53 51 * No arch-specific IRQ flags. 54 52 */
-11
arch/arm64/kernel/irq.c
··· 40 40 return 0; 41 41 } 42 42 43 - /* 44 - * handle_IRQ handles all hardware IRQ's. Decoded IRQs should 45 - * not come via this function. Instead, they should provide their 46 - * own 'handler'. Used by platform code implementing C-based 1st 47 - * level decoding. 48 - */ 49 - void handle_IRQ(unsigned int irq, struct pt_regs *regs) 50 - { 51 - __handle_domain_irq(NULL, irq, false, regs); 52 - } 53 - 54 43 void __init set_handle_irq(void (*handle_irq)(struct pt_regs *)) 55 44 { 56 45 if (handle_arch_irq)