diff options
author | Valentin Schneider <valentin.schneider@arm.com> | 2020-11-09 09:41:18 +0000 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2020-12-11 14:47:50 +0000 |
commit | e52e73b7e9f7d08b8c2ef6fb1657105093e22a03 (patch) | |
tree | 59f511b9795734a328dcb0114f24fe23c28458e4 /drivers/irqchip | |
parent | 6abbd6988971aaa607b026eaa0ffd2301352f2ea (diff) | |
download | linux-e52e73b7e9f7d08b8c2ef6fb1657105093e22a03.tar.bz2 |
irqchip/armada-370-xp: Make IPIs use handle_percpu_devid_irq()
As done for the Arm GIC irqchips, move IPIs to handle_percpu_devid_irq() as
handle_percpu_devid_fasteoi_ipi() isn't actually required.
Signed-off-by: Valentin Schneider <valentin.schneider@arm.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20201109094121.29975-3-valentin.schneider@arm.com
Diffstat (limited to 'drivers/irqchip')
-rw-r--r-- | drivers/irqchip/irq-armada-370-xp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-armada-370-xp.c b/drivers/irqchip/irq-armada-370-xp.c index d7eb2e93db8f..32938dfc0e46 100644 --- a/drivers/irqchip/irq-armada-370-xp.c +++ b/drivers/irqchip/irq-armada-370-xp.c @@ -382,7 +382,7 @@ static int armada_370_xp_ipi_alloc(struct irq_domain *d, irq_set_percpu_devid(virq + i); irq_domain_set_info(d, virq + i, i, &ipi_irqchip, d->host_data, - handle_percpu_devid_fasteoi_ipi, + handle_percpu_devid_irq, NULL, NULL); } |