aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/ralink/irq.c
diff options
context:
space:
mode:
authorMarc Zyngier <maz@kernel.org>2021-05-04 17:42:18 +0100
committerMarc Zyngier <maz@kernel.org>2021-08-12 11:39:40 +0100
commit0661cb2af0ba628e40a288d134b64c5a9e001a3f (patch)
tree83634582eadbcc65bc13d6cb320301a9248b207e /arch/mips/ralink/irq.c
parentarc: Bulk conversion to generic_handle_domain_irq() (diff)
downloadlinux-dev-0661cb2af0ba628e40a288d134b64c5a9e001a3f.tar.xz
linux-dev-0661cb2af0ba628e40a288d134b64c5a9e001a3f.zip
mips: 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: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'arch/mips/ralink/irq.c')
-rw-r--r--arch/mips/ralink/irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/ralink/irq.c b/arch/mips/ralink/irq.c
index 220ca0cd7945..fa353bc13947 100644
--- a/arch/mips/ralink/irq.c
+++ b/arch/mips/ralink/irq.c
@@ -100,7 +100,7 @@ static void ralink_intc_irq_handler(struct irq_desc *desc)
if (pending) {
struct irq_domain *domain = irq_desc_get_handler_data(desc);
- generic_handle_irq(irq_find_mapping(domain, __ffs(pending)));
+ generic_handle_domain_irq(domain, __ffs(pending));
} else {
spurious_interrupt();
}