From: Benjamin Herrenschmidt Date: Sat, 4 May 2013 14:24:32 +0000 (+0000) Subject: powerpc/pnv: Fix "compatible" property for P8 PHB X-Git-Tag: upstream/snapshot3+hdmi~5091^2~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f3d40c2532fee15a30d7a364ac365c21748a4a95;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git powerpc/pnv: Fix "compatible" property for P8 PHB The property should be "ibm,power8-pciex", not "ibm,p8-pciex". The latter was changed in FW because it was inconsistent with the rest of the nodes. Signed-off-by: Benjamin Herrenschmidt --- diff --git a/arch/powerpc/platforms/powernv/pci-ioda.c b/arch/powerpc/platforms/powernv/pci-ioda.c index 8c6c9cf..97b08fc 100644 --- a/arch/powerpc/platforms/powernv/pci-ioda.c +++ b/arch/powerpc/platforms/powernv/pci-ioda.c @@ -1089,7 +1089,7 @@ void __init pnv_pci_init_ioda_phb(struct device_node *np, int ioda_type) /* Detect specific models for error handling */ if (of_device_is_compatible(np, "ibm,p7ioc-pciex")) phb->model = PNV_PHB_MODEL_P7IOC; - else if (of_device_is_compatible(np, "ibm,p8-pciex")) + else if (of_device_is_compatible(np, "ibm,power8-pciex")) phb->model = PNV_PHB_MODEL_PHB3; else phb->model = PNV_PHB_MODEL_UNKNOWN;