diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2022-05-09 19:22:03 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2022-05-09 19:22:03 +0000 |
| commit | 4e75e4962645dfd2c3d6e7e35dee7e875d331e3b (patch) | |
| tree | 802d29440ee7ec0b71335fd435edd07bebc913b2 /sys/dev | |
| parent | 534c3629e60a1ac7938a57b7bf8d97da240347b2 (diff) | |
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/oce/oce_if.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/oce/oce_if.c b/sys/dev/oce/oce_if.c index ff784918411d..0fb749a5ee29 100644 --- a/sys/dev/oce/oce_if.c +++ b/sys/dev/oce/oce_if.c @@ -209,7 +209,6 @@ static driver_t oce_driver = { oce_dispatch, sizeof(OCE_SOFTC) }; -static devclass_t oce_devclass; /* global vars */ const char component_revision[32] = {"///" COMPONENT_REVISION "///"}; @@ -232,7 +231,7 @@ static uint32_t supportedDevices[] = { (PCI_VENDOR_EMULEX << 16) | PCI_PRODUCT_SH }; -DRIVER_MODULE(oce, pci, oce_driver, oce_devclass, 0, 0); +DRIVER_MODULE(oce, pci, oce_driver, 0, 0); MODULE_PNP_INFO("W32:vendor/device", pci, oce, supportedDevices, nitems(supportedDevices)); MODULE_DEPEND(oce, pci, 1, 1, 1); |
