* [PATCH] soc: fsl: qe_ports_ic: switch to irq_domain_create_linear()
@ 2026-03-24 22:34 Christophe Leroy (CS GROUP)
0 siblings, 0 replies; only message in thread
From: Christophe Leroy (CS GROUP) @ 2026-03-24 22:34 UTC (permalink / raw)
To: Jiri Slaby, Qiang Zhao, Christophe Leroy (CS GROUP)
Cc: linuxppc-dev, linux-arm-kernel, linux-kernel
irq_domain_add_linear() is about to be removed, replace by the
more generic irq_domain_create_linear(),
see commit 42b8b16fe56c ("irqdomain: Drop irq_domain_add_*()
functions") for details.
Signed-off-by: Christophe Leroy (CS GROUP) <chleroy@kernel.org>
---
drivers/soc/fsl/qe/qe_ports_ic.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/soc/fsl/qe/qe_ports_ic.c b/drivers/soc/fsl/qe/qe_ports_ic.c
index 5e3fae19f314..9b0bba64e91e 100644
--- a/drivers/soc/fsl/qe/qe_ports_ic.c
+++ b/drivers/soc/fsl/qe/qe_ports_ic.c
@@ -118,7 +118,7 @@ static int qepic_probe(struct platform_device *pdev)
if (data->irq < 0)
return data->irq;
- data->host = irq_domain_add_linear(dev->of_node, 32, &qepic_host_ops, data);
+ data->host = irq_domain_create_linear(dev_fwnode(dev), 32, &qepic_host_ops, data);
if (!data->host)
return -ENODEV;
--
2.49.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-03-24 22:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-24 22:34 [PATCH] soc: fsl: qe_ports_ic: switch to irq_domain_create_linear() Christophe Leroy (CS GROUP)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox