git: a4f3b83b93c1 - main - isl: Remove unused devclass argument to DRIVER_MODULE.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 09 May 2022 19:22:57 UTC
The branch main has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=a4f3b83b93c1863b7661b0094727ca18e7fe223f commit a4f3b83b93c1863b7661b0094727ca18e7fe223f Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2022-05-09 19:22:02 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2022-05-09 19:22:02 +0000 isl: Remove unused devclass argument to DRIVER_MODULE. --- sys/dev/isl/isl.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sys/dev/isl/isl.c b/sys/dev/isl/isl.c index 9203cf090917..d8ce370e294f 100644 --- a/sys/dev/isl/isl.c +++ b/sys/dev/isl/isl.c @@ -131,8 +131,6 @@ static int isl_detach(device_t); static int isl_sysctl(SYSCTL_HANDLER_ARGS); -static devclass_t isl_devclass; - static device_method_t isl_methods[] = { /* device interface */ DEVMETHOD(device_probe, isl_probe), @@ -339,6 +337,6 @@ isl_read_sensor(device_t dev, uint8_t cmd_mask) return (ret); } -DRIVER_MODULE(isl, iicbus, isl_driver, isl_devclass, NULL, NULL); +DRIVER_MODULE(isl, iicbus, isl_driver, NULL, NULL); MODULE_DEPEND(isl, iicbus, IICBUS_MINVER, IICBUS_PREFVER, IICBUS_MAXVER); MODULE_VERSION(isl, 1);