Deleted Added
full compact
ofw_pcibus.c (190113) ofw_pcibus.c (200874)
1/*-
2 * Copyright (c) 1997, Stefan Esser <se@freebsd.org>
3 * Copyright (c) 2000, Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000, BSDi
5 * Copyright (c) 2003, Thomas Moestl <tmm@FreeBSD.org>
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997, Stefan Esser <se@freebsd.org>
3 * Copyright (c) 2000, Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000, BSDi
5 * Copyright (c) 2003, Thomas Moestl <tmm@FreeBSD.org>
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/sys/sparc64/pci/ofw_pcibus.c 190113 2009-03-19 21:12:44Z marius $");
31__FBSDID("$FreeBSD: head/sys/sparc64/pci/ofw_pcibus.c 200874 2009-12-22 21:02:46Z marius $");
32
33#include "opt_ofw_pci.h"
34
35#include <sys/param.h>
36#include <sys/bus.h>
37#include <sys/kernel.h>
38#include <sys/libkern.h>
39#include <sys/module.h>

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

96 struct pci_devinfo opd_dinfo;
97 struct ofw_bus_devinfo opd_obdinfo;
98};
99
100static devclass_t pci_devclass;
101
102DEFINE_CLASS_1(pci, ofw_pcibus_driver, ofw_pcibus_methods, 1 /* no softc */,
103 pci_driver);
32
33#include "opt_ofw_pci.h"
34
35#include <sys/param.h>
36#include <sys/bus.h>
37#include <sys/kernel.h>
38#include <sys/libkern.h>
39#include <sys/module.h>

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

96 struct pci_devinfo opd_dinfo;
97 struct ofw_bus_devinfo opd_obdinfo;
98};
99
100static devclass_t pci_devclass;
101
102DEFINE_CLASS_1(pci, ofw_pcibus_driver, ofw_pcibus_methods, 1 /* no softc */,
103 pci_driver);
104DRIVER_MODULE(ofw_pcibus, pcib, ofw_pcibus_driver, pci_devclass, 0, 0);
104EARLY_DRIVER_MODULE(ofw_pcibus, pcib, ofw_pcibus_driver, pci_devclass, 0, 0,
105 BUS_PASS_BUS);
105MODULE_VERSION(ofw_pcibus, 1);
106MODULE_DEPEND(ofw_pcibus, pci, 1, 1, 1);
107
108static int
109ofw_pcibus_probe(device_t dev)
110{
111
112 if (ofw_bus_get_node(dev) == 0)

--- 207 unchanged lines hidden ---
106MODULE_VERSION(ofw_pcibus, 1);
107MODULE_DEPEND(ofw_pcibus, pci, 1, 1, 1);
108
109static int
110ofw_pcibus_probe(device_t dev)
111{
112
113 if (ofw_bus_get_node(dev) == 0)

--- 207 unchanged lines hidden ---