From 184566d0d231b389c45f7edf3b0a08c8ec9fcc67 Mon Sep 17 00:00:00 2001 From: Nathan Whitehorn Date: Mon, 11 Nov 2013 15:44:20 +0000 Subject: [PATCH] Be more flexible about which compatible strings to accept. This brings up the PCI Express bus on the RB800 using the firmware device tree. --- sys/powerpc/mpc85xx/pci_mpc85xx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/powerpc/mpc85xx/pci_mpc85xx.c b/sys/powerpc/mpc85xx/pci_mpc85xx.c index 5d7f542250ef..0699b224b495 100644 --- a/sys/powerpc/mpc85xx/pci_mpc85xx.c +++ b/sys/powerpc/mpc85xx/pci_mpc85xx.c @@ -181,6 +181,7 @@ fsl_pcib_probe(device_t dev) return (ENXIO); if (!(ofw_bus_is_compatible(dev, "fsl,mpc8540-pci") || + ofw_bus_is_compatible(dev, "fsl,mpc8540-pcie") || ofw_bus_is_compatible(dev, "fsl,mpc8548-pcie"))) return (ENXIO);