ste: Remove unused devclass argument to DRIVER_MODULE.

This commit is contained in:
John Baldwin 2022-05-06 15:46:56 -07:00
parent 3390adfe42
commit b04a8a6907

View File

@ -178,9 +178,7 @@ static driver_t ste_driver = {
sizeof(struct ste_softc)
};
static devclass_t ste_devclass;
DRIVER_MODULE(ste, pci, ste_driver, ste_devclass, 0, 0);
DRIVER_MODULE(ste, pci, ste_driver, 0, 0);
DRIVER_MODULE(miibus, ste, miibus_driver, 0, 0);
#define STE_SETBIT4(sc, reg, x) \