]> Pileus Git - ~andy/linux/commitdiff
powerpc/pnv: Fix "compatible" property for P8 PHB
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Sat, 4 May 2013 14:24:32 +0000 (14:24 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Sun, 5 May 2013 23:25:42 +0000 (09:25 +1000)
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 <benh@kernel.crashing.org>
arch/powerpc/platforms/powernv/pci-ioda.c

index 8c6c9cf91c135ad4641344e5609260538f34db36..97b08fcc872785503f0ae0a19295d9a5795fe21b 100644 (file)
@@ -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;