diff options
author | Hao Lee <[email protected]> | 2021-01-03 03:08:34 +0000 |
---|---|---|
committer | Borislav Petkov <[email protected]> | 2021-01-12 14:37:37 +0100 |
commit | 11aa1415d8bd2920ce884356479eabbd64b1df2a (patch) | |
tree | 7d9600d3e0ad8472817762461a34bac373b5bb29 | |
parent | 4af0e6e39b7ed77796a41537db91d717fedd0ac3 (diff) |
x86/entry: Remove now unused do_IRQ() declaration
do_IRQ() has been replaced by common_interrupt() in
fa5e5c409213 ("x86/entry: Use idtentry for interrupts")
Remove its now unused declaration.
Signed-off-by: Hao Lee <[email protected]>
Signed-off-by: Borislav Petkov <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r-- | arch/x86/include/asm/irq.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/include/asm/irq.h b/arch/x86/include/asm/irq.h index 528c8a71fe7f..76d389691b5b 100644 --- a/arch/x86/include/asm/irq.h +++ b/arch/x86/include/asm/irq.h @@ -40,8 +40,6 @@ extern void native_init_IRQ(void); extern void __handle_irq(struct irq_desc *desc, struct pt_regs *regs); -extern __visible void do_IRQ(struct pt_regs *regs, unsigned long vector); - extern void init_ISA_irqs(void); extern void __init init_IRQ(void); |