Deleted Added
full compact
pci_mpc85xx.c (266000) pci_mpc85xx.c (266160)
1/*-
2 * Copyright 2006-2007 by Juniper Networks.
3 * Copyright 2008 Semihalf.
4 * Copyright 2010 The FreeBSD Foundation
5 * All rights reserved.
6 *
7 * Portions of this software were developed by Semihalf
8 * under sponsorship from the FreeBSD Foundation.

--- 20 unchanged lines hidden (view full) ---

29 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * From: FreeBSD: src/sys/powerpc/mpc85xx/pci_ocp.c,v 1.9 2010/03/23 23:46:28 marcel
34 */
35
36#include <sys/cdefs.h>
1/*-
2 * Copyright 2006-2007 by Juniper Networks.
3 * Copyright 2008 Semihalf.
4 * Copyright 2010 The FreeBSD Foundation
5 * All rights reserved.
6 *
7 * Portions of this software were developed by Semihalf
8 * under sponsorship from the FreeBSD Foundation.

--- 20 unchanged lines hidden (view full) ---

29 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * From: FreeBSD: src/sys/powerpc/mpc85xx/pci_ocp.c,v 1.9 2010/03/23 23:46:28 marcel
34 */
35
36#include <sys/cdefs.h>
37__FBSDID("$FreeBSD: stable/10/sys/powerpc/mpc85xx/pci_mpc85xx.c 266000 2014-05-14 01:53:20Z ian $");
37__FBSDID("$FreeBSD: stable/10/sys/powerpc/mpc85xx/pci_mpc85xx.c 266160 2014-05-15 17:30:16Z ian $");
38
39#include <sys/param.h>
40#include <sys/systm.h>
41#include <sys/ktr.h>
42#include <sys/sockio.h>
43#include <sys/mbuf.h>
44#include <sys/malloc.h>
45#include <sys/kernel.h>

--- 119 unchanged lines hidden (view full) ---

165
166 DEVMETHOD_END
167};
168
169static devclass_t fsl_pcib_devclass;
170
171DEFINE_CLASS_1(pcib, fsl_pcib_driver, fsl_pcib_methods,
172 sizeof(struct fsl_pcib_softc), ofw_pci_driver);
38
39#include <sys/param.h>
40#include <sys/systm.h>
41#include <sys/ktr.h>
42#include <sys/sockio.h>
43#include <sys/mbuf.h>
44#include <sys/malloc.h>
45#include <sys/kernel.h>

--- 119 unchanged lines hidden (view full) ---

165
166 DEVMETHOD_END
167};
168
169static devclass_t fsl_pcib_devclass;
170
171DEFINE_CLASS_1(pcib, fsl_pcib_driver, fsl_pcib_methods,
172 sizeof(struct fsl_pcib_softc), ofw_pci_driver);
173DRIVER_MODULE(pcib, nexus, fsl_pcib_driver, fsl_pcib_devclass, 0, 0);
173DRIVER_MODULE(pcib, ofwbus, fsl_pcib_driver, fsl_pcib_devclass, 0, 0);
174
175static int
176fsl_pcib_probe(device_t dev)
177{
178
179 if (ofw_bus_get_type(dev) == NULL ||
180 strcmp(ofw_bus_get_type(dev), "pci") != 0)
181 return (ENXIO);

--- 646 unchanged lines hidden ---
174
175static int
176fsl_pcib_probe(device_t dev)
177{
178
179 if (ofw_bus_get_type(dev) == NULL ||
180 strcmp(ofw_bus_get_type(dev), "pci") != 0)
181 return (ENXIO);

--- 646 unchanged lines hidden ---