summaryrefslogtreecommitdiff
path: root/sys/dev/scc
diff options
context:
space:
mode:
authorMarius Strobl <marius@FreeBSD.org>2013-08-09 21:01:41 +0000
committerMarius Strobl <marius@FreeBSD.org>2013-08-09 21:01:41 +0000
commit45dad89b1fb03045bb8fd03f906ff0a0e48b0f73 (patch)
tree11abf5510a541c7a2bf2c12be59c4d4aeb4f4d6b /sys/dev/scc
parent0941e4a6d01634f983fb44b0aee113c4c86630fb (diff)
Notes
Diffstat (limited to 'sys/dev/scc')
-rw-r--r--sys/dev/scc/scc_bfe_ebus.c2
-rw-r--r--sys/dev/scc/scc_bfe_macio.c2
-rw-r--r--sys/dev/scc/scc_bfe_quicc.c4
-rw-r--r--sys/dev/scc/scc_bfe_sbus.c4
4 files changed, 5 insertions, 7 deletions
diff --git a/sys/dev/scc/scc_bfe_ebus.c b/sys/dev/scc/scc_bfe_ebus.c
index 2b71a6716ad2..def832af5ead 100644
--- a/sys/dev/scc/scc_bfe_ebus.c
+++ b/sys/dev/scc/scc_bfe_ebus.c
@@ -94,4 +94,4 @@ static driver_t scc_ebus_driver = {
sizeof(struct scc_softc),
};
-DRIVER_MODULE(scc, ebus, scc_ebus_driver, scc_devclass, 0, 0);
+DRIVER_MODULE(scc, ebus, scc_ebus_driver, scc_devclass, NULL, NULL);
diff --git a/sys/dev/scc/scc_bfe_macio.c b/sys/dev/scc/scc_bfe_macio.c
index 042788d14d3b..bdba908324a0 100644
--- a/sys/dev/scc/scc_bfe_macio.c
+++ b/sys/dev/scc/scc_bfe_macio.c
@@ -90,4 +90,4 @@ static driver_t scc_macio_driver = {
sizeof(struct scc_softc),
};
-DRIVER_MODULE(scc, macio, scc_macio_driver, scc_devclass, 0, 0);
+DRIVER_MODULE(scc, macio, scc_macio_driver, scc_devclass, NULL, NULL);
diff --git a/sys/dev/scc/scc_bfe_quicc.c b/sys/dev/scc/scc_bfe_quicc.c
index c7e97f3e697f..d776e839f2b9 100644
--- a/sys/dev/scc/scc_bfe_quicc.c
+++ b/sys/dev/scc/scc_bfe_quicc.c
@@ -27,8 +27,6 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#define __RMAN_RESOURCE_VISIBLE
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/bus.h>
@@ -98,4 +96,4 @@ static driver_t scc_quicc_driver = {
sizeof(struct scc_softc),
};
-DRIVER_MODULE(scc, quicc, scc_quicc_driver, scc_devclass, 0, 0);
+DRIVER_MODULE(scc, quicc, scc_quicc_driver, scc_devclass, NULL, NULL);
diff --git a/sys/dev/scc/scc_bfe_sbus.c b/sys/dev/scc/scc_bfe_sbus.c
index ba6b25a66b93..d776513f507d 100644
--- a/sys/dev/scc/scc_bfe_sbus.c
+++ b/sys/dev/scc/scc_bfe_sbus.c
@@ -90,5 +90,5 @@ static driver_t scc_sbus_driver = {
sizeof(struct scc_softc),
};
-DRIVER_MODULE(scc, fhc, scc_sbus_driver, scc_devclass, 0, 0);
-DRIVER_MODULE(scc, sbus, scc_sbus_driver, scc_devclass, 0, 0);
+DRIVER_MODULE(scc, fhc, scc_sbus_driver, scc_devclass, NULL, NULL);
+DRIVER_MODULE(scc, sbus, scc_sbus_driver, scc_devclass, NULL, NULL);