The branch main has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=b9c38d5be6f01799d63e6f94a1f16e58407d2c3f
commit b9c38d5be6f01799d63e6f94a1f16e58407d2c3f Author: John Baldwin <j...@freebsd.org> AuthorDate: 2022-04-19 21:14:45 +0000 Commit: John Baldwin <j...@freebsd.org> CommitDate: 2022-05-06 22:39:30 +0000 s3pci: Remove unused devclass argument to DRIVER_MODULE. --- sys/dev/fb/s3_pci.c | 4 +--- 1 file changed, 1 insertion(+), 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);