aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/re
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2022-05-06 22:46:55 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2022-05-06 22:46:55 +0000
commit30c024c54afce39a21642308e87891c06cbb6fc5 (patch)
treee6e02f62279c3e4d74b2453c9bc943380c9dc69c /sys/dev/re
parentaed8cdc8cd9a810e67d9374d1a18cb27771ef2cc (diff)
downloadsrc-30c024c54afce39a21642308e87891c06cbb6fc5.tar.gz
src-30c024c54afce39a21642308e87891c06cbb6fc5.zip
re/rl: Remove unused devclass arguments to DRIVER_MODULE.
Diffstat (limited to 'sys/dev/re')
-rw-r--r--sys/dev/re/if_re.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/re/if_re.c b/sys/dev/re/if_re.c
index 3e674908b22f..271a7f47b5e4 100644
--- a/sys/dev/re/if_re.c
+++ b/sys/dev/re/if_re.c
@@ -350,9 +350,7 @@ static driver_t re_driver = {
sizeof(struct rl_softc)
};
-static devclass_t re_devclass;
-
-DRIVER_MODULE(re, pci, re_driver, re_devclass, 0, 0);
+DRIVER_MODULE(re, pci, re_driver, 0, 0);
DRIVER_MODULE(miibus, re, miibus_driver, 0, 0);
#define EE_SET(x) \