Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

powerpc: Switch to of_fwnode_handle()

of_node_to_fwnode() is irqdomain's reimplementation of the "officially"
defined of_fwnode_handle(). The former is in the process of being
removed, so use the latter instead.

[ tglx: Fix up subject prefix ]

Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20250319092951.37667-9-jirislaby@kernel.org


authored by

Jiri Slaby (SUSE) and committed by
Thomas Gleixner
f0983189 87228532

+2 -2
+1 -1
arch/powerpc/platforms/powernv/pci-ioda.c
··· 1897 1897 return -ENOMEM; 1898 1898 } 1899 1899 1900 - hose->msi_domain = pci_msi_create_irq_domain(of_node_to_fwnode(hose->dn), 1900 + hose->msi_domain = pci_msi_create_irq_domain(of_fwnode_handle(hose->dn), 1901 1901 &pnv_msi_domain_info, 1902 1902 hose->dev_domain); 1903 1903 if (!hose->msi_domain) {
+1 -1
arch/powerpc/platforms/pseries/msi.c
··· 628 628 return -ENOMEM; 629 629 } 630 630 631 - phb->msi_domain = pci_msi_create_irq_domain(of_node_to_fwnode(phb->dn), 631 + phb->msi_domain = pci_msi_create_irq_domain(of_fwnode_handle(phb->dn), 632 632 &pseries_msi_domain_info, 633 633 phb->dev_domain); 634 634 if (!phb->msi_domain) {