diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2022-05-09 19:22:01 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2022-05-09 19:22:01 +0000 |
| commit | e739b0adf5f5d663102607043b3a9a511df34a83 (patch) | |
| tree | 37c9103d8eafb98a6e07ac18fd3da11378fa3ad1 /sys/dev/hifn | |
| parent | 86dc8398c9ca2283c5d6984992b7a585257b5adb (diff) | |
Diffstat (limited to 'sys/dev/hifn')
| -rw-r--r-- | sys/dev/hifn/hifn7751.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/hifn/hifn7751.c b/sys/dev/hifn/hifn7751.c index 033ef7edf10d..0b1d79dc4e1e 100644 --- a/sys/dev/hifn/hifn7751.c +++ b/sys/dev/hifn/hifn7751.c @@ -125,14 +125,14 @@ static device_method_t hifn_methods[] = { DEVMETHOD_END }; + static driver_t hifn_driver = { "hifn", hifn_methods, sizeof (struct hifn_softc) }; -static devclass_t hifn_devclass; -DRIVER_MODULE(hifn, pci, hifn_driver, hifn_devclass, 0, 0); +DRIVER_MODULE(hifn, pci, hifn_driver, 0, 0); MODULE_DEPEND(hifn, crypto, 1, 1, 1); #ifdef HIFN_RNDTEST MODULE_DEPEND(hifn, rndtest, 1, 1, 1); |
