[PATCH] soc: fsl: qe_ports_ic: switch to irq_domain_create_linear()
Christophe Leroy (CS GROUP)
chleroy at kernel.org
Wed Mar 25 09:34:16 AEDT 2026
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 at 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
More information about the Linuxppc-dev
mailing list