aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2022-04-19 21:14:45 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2022-05-06 22:39:30 +0000
commitb9c38d5be6f01799d63e6f94a1f16e58407d2c3f (patch)
treef861342411ea95ea5c730ae95a4b665e3ebe2cc2
parent9360510b167618987f2b552929fba2fa4cb4817b (diff)
downloadsrc-b9c38d5be6f01799d63e6f94a1f16e58407d2c3f.tar.gz
src-b9c38d5be6f01799d63e6f94a1f16e58407d2c3f.zip
s3pci: Remove unused devclass argument to DRIVER_MODULE.
-rw-r--r--sys/dev/fb/s3_pci.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/fb/s3_pci.c b/sys/dev/fb/s3_pci.c
index 37ecddbaeb43..3e61a4591370 100644
--- a/sys/dev/fb/s3_pci.c
+++ b/sys/dev/fb/s3_pci.c
@@ -564,6 +564,4 @@ static driver_t s3pci_driver = {
sizeof(struct s3pci_softc),
};
-static devclass_t s3pci_devclass;
-
-DRIVER_MODULE(s3pci, pci, s3pci_driver, s3pci_devclass, 0, 0);
+DRIVER_MODULE(s3pci, pci, s3pci_driver, 0, 0);