axgbe: Remove unused devclass arguments to DRIVER_MODULE.

This commit is contained in:
John Baldwin 2022-05-06 15:46:59 -07:00
parent 74f8498190
commit 95d60710be
2 changed files with 3 additions and 8 deletions

View File

@ -570,11 +570,9 @@ static device_method_t axgbe_methods[] = {
{ 0, 0 }
};
static devclass_t axgbe_devclass;
DEFINE_CLASS_0(axgbe, axgbe_driver, axgbe_methods,
sizeof(struct axgbe_softc));
DRIVER_MODULE(axa, simplebus, axgbe_driver, axgbe_devclass, 0, 0);
DRIVER_MODULE(axa, simplebus, axgbe_driver, 0, 0);
static struct ofw_compat_data phy_compat_data[] = {
@ -615,8 +613,6 @@ static device_method_t axgbephy_methods[] = {
{ 0, 0 }
};
static devclass_t axgbephy_devclass;
DEFINE_CLASS_0(axgbephy, axgbephy_driver, axgbephy_methods, 0);
EARLY_DRIVER_MODULE(axgbephy, simplebus, axgbephy_driver, axgbephy_devclass,
EARLY_DRIVER_MODULE(axgbephy, simplebus, axgbephy_driver,
0, 0, BUS_PASS_RESOURCE + BUS_PASS_ORDER_MIDDLE);

View File

@ -195,8 +195,7 @@ static driver_t ax_driver = {
"ax", ax_methods, sizeof(struct axgbe_if_softc),
};
devclass_t ax_devclass;
DRIVER_MODULE(axp, pci, ax_driver, ax_devclass, 0, 0);
DRIVER_MODULE(axp, pci, ax_driver, 0, 0);
DRIVER_MODULE(miibus, ax, miibus_driver, 0, 0);
IFLIB_PNP_INFO(pci, ax_driver, axgbe_vendor_info_array);