Skip to content

Commit c9604dd

Browse files
author
Marc Zyngier
committed
arc: Bulk conversion to generic_handle_domain_irq()
Wherever possible, replace constructs that match either generic_handle_irq(irq_find_mapping()) or generic_handle_irq(irq_linear_revmap()) to a single call to generic_handle_domain_irq(). Acked-by: Vineet Gupta <[email protected]> Signed-off-by: Marc Zyngier <[email protected]>
1 parent a1e5cd9 commit c9604dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arc/kernel/mcip.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ static void idu_cascade_isr(struct irq_desc *desc)
352352
irq_hw_number_t idu_hwirq = core_hwirq - FIRST_EXT_IRQ;
353353

354354
chained_irq_enter(core_chip, desc);
355-
generic_handle_irq(irq_find_mapping(idu_domain, idu_hwirq));
355+
generic_handle_domain_irq(idu_domain, idu_hwirq);
356356
chained_irq_exit(core_chip, desc);
357357
}
358358

0 commit comments

Comments
 (0)