The Freescale qoriq PCIe controller is compatible with mpc85xx.
Add the compatible checks. Obtained from: Semihalf (partial) Sponsored by: Alex Perez/Inertial Computing
This commit is contained in:
parent
8b64fa1e12
commit
2ae6c7c3ad
@ -182,7 +182,10 @@ fsl_pcib_probe(device_t dev)
|
|||||||
|
|
||||||
if (!(ofw_bus_is_compatible(dev, "fsl,mpc8540-pci") ||
|
if (!(ofw_bus_is_compatible(dev, "fsl,mpc8540-pci") ||
|
||||||
ofw_bus_is_compatible(dev, "fsl,mpc8540-pcie") ||
|
ofw_bus_is_compatible(dev, "fsl,mpc8540-pcie") ||
|
||||||
ofw_bus_is_compatible(dev, "fsl,mpc8548-pcie")))
|
ofw_bus_is_compatible(dev, "fsl,mpc8548-pcie") ||
|
||||||
|
ofw_bus_is_compatible(dev, "fsl,p5020-pcie") ||
|
||||||
|
ofw_bus_is_compatible(dev, "fsl,qoriq-pcie-v2.2") ||
|
||||||
|
ofw_bus_is_compatible(dev, "fsl,qoriq-pcie")))
|
||||||
return (ENXIO);
|
return (ENXIO);
|
||||||
|
|
||||||
device_set_desc(dev, "Freescale Integrated PCI/PCI-E Controller");
|
device_set_desc(dev, "Freescale Integrated PCI/PCI-E Controller");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user