aboutsummaryrefslogtreecommitdiff
path: root/sys/powerpc
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2022-05-10 17:21:38 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2022-05-10 17:21:38 +0000
commit42f777fc202bb41aa786b18fda51b205e740b47b (patch)
tree07d9c0859a5f4bd17f0445ee8d5cf0afccec6c35 /sys/powerpc
parentbb32809b7429262a5fec4defe4deb8d1c603dd8a (diff)
downloadsrc-42f777fc202bb41aa786b18fda51b205e740b47b.tar.gz
src-42f777fc202bb41aa786b18fda51b205e740b47b.zip
Remove unused adb_devclass.
Diffstat (limited to 'sys/powerpc')
-rw-r--r--sys/powerpc/powermac/cuda.c2
-rw-r--r--sys/powerpc/powermac/pmu.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/powerpc/powermac/cuda.c b/sys/powerpc/powermac/cuda.c
index 3c17448187e7..0feb197143f3 100644
--- a/sys/powerpc/powermac/cuda.c
+++ b/sys/powerpc/powermac/cuda.c
@@ -116,7 +116,7 @@ static driver_t cuda_driver = {
static devclass_t cuda_devclass;
DRIVER_MODULE(cuda, macio, cuda_driver, cuda_devclass, 0, 0);
-DRIVER_MODULE(adb, cuda, adb_driver, adb_devclass, 0, 0);
+DRIVER_MODULE(adb, cuda, adb_driver, 0, 0);
static void cuda_intr(void *arg);
static uint8_t cuda_read_reg(struct cuda_softc *sc, u_int offset);
diff --git a/sys/powerpc/powermac/pmu.c b/sys/powerpc/powermac/pmu.c
index 642206fd4f78..56194d85e7bb 100644
--- a/sys/powerpc/powermac/pmu.c
+++ b/sys/powerpc/powermac/pmu.c
@@ -158,7 +158,7 @@ static devclass_t pmu_devclass;
EARLY_DRIVER_MODULE(pmu, macio, pmu_driver, pmu_devclass, 0, 0,
BUS_PASS_RESOURCE);
-DRIVER_MODULE(adb, pmu, adb_driver, adb_devclass, 0, 0);
+DRIVER_MODULE(adb, pmu, adb_driver, 0, 0);
static int pmuextint_probe(device_t);
static int pmuextint_attach(device_t);