Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Nov 2013 15:44:21 +0000 (UTC)
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r257994 - head/sys/powerpc/mpc85xx
Message-ID:  <201311111544.rABFiLAC010044@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nwhitehorn
Date: Mon Nov 11 15:44:20 2013
New Revision: 257994
URL: http://svnweb.freebsd.org/changeset/base/257994

Log:
  Be more flexible about which compatible strings to accept. This brings up
  the PCI Express bus on the RB800 using the firmware device tree.

Modified:
  head/sys/powerpc/mpc85xx/pci_mpc85xx.c

Modified: head/sys/powerpc/mpc85xx/pci_mpc85xx.c
==============================================================================
--- head/sys/powerpc/mpc85xx/pci_mpc85xx.c	Mon Nov 11 15:43:21 2013	(r257993)
+++ head/sys/powerpc/mpc85xx/pci_mpc85xx.c	Mon Nov 11 15:44:20 2013	(r257994)
@@ -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);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311111544.rABFiLAC010044>