mgb: Remove unused devclass argument to DRIVER_MODULE.

This commit is contained in:
John Baldwin 2022-05-09 12:22:03 -07:00
parent 825718a331
commit 234019a0c3

View file

@ -206,8 +206,7 @@ static driver_t mgb_driver = {
"mgb", mgb_methods, sizeof(struct mgb_softc)
};
static devclass_t mgb_devclass;
DRIVER_MODULE(mgb, pci, mgb_driver, mgb_devclass, NULL, NULL);
DRIVER_MODULE(mgb, pci, mgb_driver, NULL, NULL);
IFLIB_PNP_INFO(pci, mgb, mgb_vendor_info_array);
MODULE_VERSION(mgb, 1);