mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 20:54:03 +02:00
drm/imx: Switch to irq_domain_create_linear()
irq_domain_add_linear() is going away as being obsolete now. Switch to the preferred irq_domain_create_linear(). That differs in the first parameter: It takes more generic struct fwnode_handle instead of struct device_node. Therefore, of_fwnode_handle() is added around the parameter. Note some of the users can likely use dev->fwnode directly instead of indirect of_fwnode_handle(dev->of_node). But dev->fwnode is not guaranteed to be set for all, so this has to be investigated on case to case basis (by people who can actually test with the HW). [ Liu Ying: Fix a complaint from 'checkpatch.pl --strict'. ] Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org> Cc: Thomas Gleixner <tglx@kernel.org> Cc: Liu Ying <victor.liu@nxp.com> Acked-by: Liu Ying <victor.liu@nxp.com> Link: https://patch.msgid.link/20260708095645.385291-1-jirislaby@kernel.org Signed-off-by: Liu Ying <victor.liu@nxp.com>
This commit is contained in:
parent
860e748bdd
commit
d91748f683
|
|
@ -174,8 +174,8 @@ static int dc_ic_probe(struct platform_device *pdev)
|
|||
regmap_write(data->regs, USERINTERRUPTMASK(i), 0xffffffff);
|
||||
}
|
||||
|
||||
data->domain = irq_domain_add_linear(dev->of_node, IRQ_COUNT,
|
||||
&irq_generic_chip_ops, data);
|
||||
data->domain = irq_domain_create_linear(of_fwnode_handle(dev->of_node), IRQ_COUNT,
|
||||
&irq_generic_chip_ops, data);
|
||||
if (!data->domain) {
|
||||
dev_err(dev, "failed to create IRQ domain\n");
|
||||
pm_runtime_put(dev);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user