diff options
| author | Marius Strobl <marius@FreeBSD.org> | 2013-08-02 23:30:32 +0000 |
|---|---|---|
| committer | Marius Strobl <marius@FreeBSD.org> | 2013-08-02 23:30:32 +0000 |
| commit | 71bda3eb9aa62e7073ad31ff4c374a21e2fc34ef (patch) | |
| tree | 3a084126e6352bb8007b2f4f71b10a9074deef46 /sys/dev/scc | |
| parent | c4b1deaf0d05e7ba715124b4c752edef80222115 (diff) | |
Notes
Diffstat (limited to 'sys/dev/scc')
| -rw-r--r-- | sys/dev/scc/scc_bfe_ebus.c | 2 | ||||
| -rw-r--r-- | sys/dev/scc/scc_bfe_macio.c | 2 | ||||
| -rw-r--r-- | sys/dev/scc/scc_bfe_quicc.c | 4 | ||||
| -rw-r--r-- | sys/dev/scc/scc_bfe_sbus.c | 4 |
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); |
