diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2022-05-09 19:22:04 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2022-05-09 19:22:04 +0000 |
| commit | a15fbf0ca52be0e83321aeb4d9da97f7546fb8c0 (patch) | |
| tree | 2f356881a3f19a8b68698494d2d14ba926ed4a89 /sys/dev/safe | |
| parent | 1bbc46a868a70f0b0dd548bf1015068b87b30f14 (diff) | |
Diffstat (limited to 'sys/dev/safe')
| -rw-r--r-- | sys/dev/safe/safe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/safe/safe.c b/sys/dev/safe/safe.c index 2bebac01519e..95114e253809 100644 --- a/sys/dev/safe/safe.c +++ b/sys/dev/safe/safe.c @@ -108,14 +108,14 @@ static device_method_t safe_methods[] = { DEVMETHOD_END }; + static driver_t safe_driver = { "safe", safe_methods, sizeof (struct safe_softc) }; -static devclass_t safe_devclass; -DRIVER_MODULE(safe, pci, safe_driver, safe_devclass, 0, 0); +DRIVER_MODULE(safe, pci, safe_driver, 0, 0); MODULE_DEPEND(safe, crypto, 1, 1, 1); #ifdef SAFE_RNDTEST MODULE_DEPEND(safe, rndtest, 1, 1, 1); |
