Look for the "msi-parent" in the PCI host controller OF node, not the root bus OF node. This makes it the same as MVEBU. Signed-off-by: Bjorn Helgaas <bhelgaas@xxxxxxxxxx> --- drivers/pci/host/pci-xgene.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/pci/host/pci-xgene.c b/drivers/pci/host/pci-xgene.c index 5e0d6de..3cb58a3 100644 --- a/drivers/pci/host/pci-xgene.c +++ b/drivers/pci/host/pci-xgene.c @@ -506,8 +506,7 @@ static int xgene_pcie_msi_enable(struct xgene_pcie_port *port, { struct device_node *msi_node; - msi_node = of_parse_phandle(bus->dev.of_node, - "msi-parent", 0); + msi_node = of_parse_phandle(port->dev.of_node, "msi-parent", 0); if (!msi_node) return -ENODEV; -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html