[<prev] [next>] [day] [month] [year] [list]
Message-ID: <167570460879.4906.13823581978207975292.tip-bot2@tip-bot2>
Date: Mon, 06 Feb 2023 17:30:08 -0000
From: "irqchip-bot for Marc Zyngier" <tip-bot2@...utronix.de>
To: linux-kernel@...r.kernel.org
Cc: Stephen Rothwell <sfr@...b.auug.org.au>,
Marc Zyngier <maz@...nel.org>, tglx@...utronix.de
Subject: [irqchip: irq/irqchip-next] genirq/ipi-mux: Use irq_domain_alloc_irqs()
The following commit has been merged into the irq/irqchip-next branch of irqchip:
Commit-ID: 3d812a0f27baa2d094f2c18298d48b012878dc0b
Gitweb: https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms/3d812a0f27baa2d094f2c18298d48b012878dc0b
Author: Marc Zyngier <maz@...nel.org>
AuthorDate: Mon, 06 Feb 2023 17:21:15
Committer: Marc Zyngier <maz@...nel.org>
CommitterDate: Mon, 06 Feb 2023 17:21:15
genirq/ipi-mux: Use irq_domain_alloc_irqs()
Using __irq_domain_alloc_irqs() is an unnecessary complexity. Use
irq_domain_alloc_irqs(), which is simpler and makes the code more
readable.
Reported-by: Stephen Rothwell <sfr@...b.auug.org.au>
Signed-off-by: Marc Zyngier <maz@...nel.org>
---
kernel/irq/ipi-mux.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/kernel/irq/ipi-mux.c b/kernel/irq/ipi-mux.c
index 3a403c3..fa4fc18 100644
--- a/kernel/irq/ipi-mux.c
+++ b/kernel/irq/ipi-mux.c
@@ -185,8 +185,7 @@ int ipi_mux_create(unsigned int nr_ipi, void (*mux_send)(unsigned int cpu))
domain->flags |= IRQ_DOMAIN_FLAG_IPI_SINGLE;
irq_domain_update_bus_token(domain, DOMAIN_BUS_IPI);
- rc = __irq_domain_alloc_irqs(domain, -1, nr_ipi,
- NUMA_NO_NODE, NULL, false, NULL);
+ rc = irq_domain_alloc_irqs(domain, nr_ipi, NUMA_NO_NODE, NULL);
if (rc <= 0) {
pr_err("unable to alloc IRQs from IPI Mux domain\n");
goto fail_free_domain;
Powered by blists - more mailing lists