aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/irqchip/irq-bcm2836.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2016-05-31 14:05:27 -0700
committerJason Cooper <jason@lakedaemon.net>2016-06-04 14:16:59 +0000
commitd7e3528eed85b51ddca2f281d2d4e7d687f28d60 (patch)
treef71a13c994779813c37b604e85219dd87da08d47 /drivers/irqchip/irq-bcm2836.c
parentLinux 4.7-rc1 (diff)
downloadlinux-dev-d7e3528eed85b51ddca2f281d2d4e7d687f28d60.tar.xz
linux-dev-d7e3528eed85b51ddca2f281d2d4e7d687f28d60.zip
irqchip: bcm2835: Avoid arch/arm-specific handle_IRQ
With commit 76ba59f8366f genirq: Add irq_domain-aware core IRQ handler architecture-specific irq handlers are no longer necessary. Update the bcm2835 irq driver to use the core irq handler. As a bonus, this allows the driver to support arm64 as well. Signed-off-by: Eric Anholt <eric@anholt.net> Acked-by: Stephen Warren <swarren@wwwdotorg.org> Link: https://lkml.kernel.org/r/1464728727-16300-1-git-send-email-eric@anholt.net [jac reworded commit message for clarity] Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'drivers/irqchip/irq-bcm2836.c')
-rw-r--r--drivers/irqchip/irq-bcm2836.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-bcm2836.c b/drivers/irqchip/irq-bcm2836.c
index 72ff1d5c5de6..27875982657e 100644
--- a/drivers/irqchip/irq-bcm2836.c
+++ b/drivers/irqchip/irq-bcm2836.c
@@ -180,7 +180,7 @@ __exception_irq_entry bcm2836_arm_irqchip_handle_irq(struct pt_regs *regs)
} else if (stat) {
u32 hwirq = ffs(stat) - 1;
- handle_IRQ(irq_linear_revmap(intc.domain, hwirq), regs);
+ handle_domain_irq(intc.domain, hwirq, regs);
}
}