svn commit: r200815 - in head/sys: dev/auxio sparc64/central
sparc64/fhc sparc64/pci sparc64/sparc64
Marius Strobl
marius at FreeBSD.org
Mon Dec 21 21:29:16 UTC 2009
Author: marius
Date: Mon Dec 21 21:29:16 2009
New Revision: 200815
URL: http://svn.freebsd.org/changeset/base/200815
Log:
Provide and consume missing module dependency information.
Modified:
head/sys/dev/auxio/auxio.c
head/sys/sparc64/central/central.c
head/sys/sparc64/fhc/fhc.c
head/sys/sparc64/pci/apb.c
head/sys/sparc64/pci/ofw_pcib.c
head/sys/sparc64/sparc64/nexus.c
Modified: head/sys/dev/auxio/auxio.c
==============================================================================
--- head/sys/dev/auxio/auxio.c Mon Dec 21 21:27:56 2009 (r200814)
+++ head/sys/dev/auxio/auxio.c Mon Dec 21 21:29:16 2009 (r200815)
@@ -56,7 +56,7 @@
*/
/*
- * AUXIO registers support on the sbus & ebus2, used for the floppy driver
+ * AUXIO registers support on the SBus & EBus2, used for the floppy driver
* and to control the system LED, for the BLINK option.
*/
@@ -85,8 +85,8 @@ __FBSDID("$FreeBSD$");
#include <dev/auxio/auxioreg.h>
/*
- * on sun4u, auxio exists with one register (LED) on the sbus, and 5
- * registers on the ebus2 (pci) (LED, PCIMODE, FREQUENCY, SCSI
+ * On sun4u, auxio exists with one register (LED) on the SBus, and 5
+ * registers on the EBus2 (pci) (LED, PCIMODE, FREQUENCY, SCSI
* OSCILLATOR, and TEMP SENSE.
*/
@@ -142,6 +142,7 @@ static driver_t auxio_sbus_driver = {
static devclass_t auxio_devclass;
DRIVER_MODULE(auxio, sbus, auxio_sbus_driver, auxio_devclass, 0, 0);
+MODULE_DEPEND(auxio, sbus, 1, 1, 1);
/* EBus */
static device_method_t auxio_ebus_methods[] = {
@@ -158,6 +159,7 @@ static driver_t auxio_ebus_driver = {
};
DRIVER_MODULE(auxio, ebus, auxio_ebus_driver, auxio_devclass, 0, 0);
+MODULE_DEPEND(auxio, ebus, 1, 1, 1);
MODULE_VERSION(auxio, 1);
#define AUXIO_LOCK_INIT(sc) \
Modified: head/sys/sparc64/central/central.c
==============================================================================
--- head/sys/sparc64/central/central.c Mon Dec 21 21:27:56 2009 (r200814)
+++ head/sys/sparc64/central/central.c Mon Dec 21 21:29:16 2009 (r200815)
@@ -106,6 +106,7 @@ static driver_t central_driver = {
static devclass_t central_devclass;
DRIVER_MODULE(central, nexus, central_driver, central_devclass, 0, 0);
+MODULE_DEPEND(fhc, nexus, 1, 1, 1);
MODULE_VERSION(central, 1);
static int
Modified: head/sys/sparc64/fhc/fhc.c
==============================================================================
--- head/sys/sparc64/fhc/fhc.c Mon Dec 21 21:27:56 2009 (r200814)
+++ head/sys/sparc64/fhc/fhc.c Mon Dec 21 21:29:16 2009 (r200815)
@@ -120,8 +120,9 @@ static driver_t fhc_driver = {
static devclass_t fhc_devclass;
DRIVER_MODULE(fhc, central, fhc_driver, fhc_devclass, 0, 0);
-DRIVER_MODULE(fhc, nexus, fhc_driver, fhc_devclass, 0, 0);
MODULE_DEPEND(fhc, central, 1, 1, 1);
+DRIVER_MODULE(fhc, nexus, fhc_driver, fhc_devclass, 0, 0);
+MODULE_DEPEND(fhc, nexus, 1, 1, 1);
MODULE_VERSION(fhc, 1);
static const struct intr_controller fhc_ic = {
Modified: head/sys/sparc64/pci/apb.c
==============================================================================
--- head/sys/sparc64/pci/apb.c Mon Dec 21 21:27:56 2009 (r200814)
+++ head/sys/sparc64/pci/apb.c Mon Dec 21 21:29:16 2009 (r200815)
@@ -112,6 +112,7 @@ static devclass_t pcib_devclass;
DEFINE_CLASS_0(pcib, apb_driver, apb_methods, sizeof(struct apb_softc));
DRIVER_MODULE(apb, pci, apb_driver, pcib_devclass, 0, 0);
+MODULE_DEPEND(apb, pci, 1, 1, 1);
/* APB specific registers */
#define APBR_IOMAP 0xde
Modified: head/sys/sparc64/pci/ofw_pcib.c
==============================================================================
--- head/sys/sparc64/pci/ofw_pcib.c Mon Dec 21 21:27:56 2009 (r200814)
+++ head/sys/sparc64/pci/ofw_pcib.c Mon Dec 21 21:29:16 2009 (r200815)
@@ -94,6 +94,7 @@ static devclass_t pcib_devclass;
DEFINE_CLASS_0(pcib, ofw_pcib_driver, ofw_pcib_methods,
sizeof(struct ofw_pcib_gen_softc));
DRIVER_MODULE(ofw_pcib, pci, ofw_pcib_driver, pcib_devclass, 0, 0);
+MODULE_DEPEND(ofw_pcib, pci, 1, 1, 1);
static int
ofw_pcib_probe(device_t dev)
Modified: head/sys/sparc64/sparc64/nexus.c
==============================================================================
--- head/sys/sparc64/sparc64/nexus.c Mon Dec 21 21:27:56 2009 (r200814)
+++ head/sys/sparc64/sparc64/nexus.c Mon Dec 21 21:29:16 2009 (r200815)
@@ -145,6 +145,7 @@ static devclass_t nexus_devclass;
DEFINE_CLASS_0(nexus, nexus_driver, nexus_methods, sizeof(struct nexus_softc));
DRIVER_MODULE(nexus, root, nexus_driver, nexus_devclass, 0, 0);
+MODULE_VERSION(nexus, 1);
static const char *const nexus_excl_name[] = {
"aliases",
More information about the svn-src-head
mailing list