Skip to content

Commit 9e027dd

Browse files
author
Marc Zyngier
committed
irqchip/nvic: Convert from handle_IRQ() to handle_domain_irq()
Given that the nvic driver is fully irqdomain aware, there is no reason for it to use the arch-specific handle_IRQ(), and it can be moved over to handle_domain_irq(). Signed-off-by: Marc Zyngier <[email protected]>
1 parent 9626d18 commit 9e027dd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

drivers/irqchip/irq-nvic.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ static struct irq_domain *nvic_irq_domain;
4040
asmlinkage void __exception_irq_entry
4141
nvic_handle_irq(irq_hw_number_t hwirq, struct pt_regs *regs)
4242
{
43-
unsigned int irq = irq_linear_revmap(nvic_irq_domain, hwirq);
44-
45-
handle_IRQ(irq, regs);
43+
handle_domain_irq(nvic_irq_domain, hwirq, regs);
4644
}
4745

4846
static int nvic_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,

0 commit comments

Comments
 (0)