xdma: Remove unused devclass arguments to DRIVER_MODULE.

This commit is contained in:
John Baldwin 2022-05-10 10:21:37 -07:00
parent 6e7a585348
commit a3f08403ca
2 changed files with 2 additions and 6 deletions

View File

@ -640,7 +640,5 @@ static driver_t pl330_driver = {
sizeof(struct pl330_softc),
};
static devclass_t pl330_devclass;
EARLY_DRIVER_MODULE(pl330, simplebus, pl330_driver, pl330_devclass, 0, 0,
EARLY_DRIVER_MODULE(pl330, simplebus, pl330_driver, 0, 0,
BUS_PASS_INTERRUPT + BUS_PASS_ORDER_LATE);

View File

@ -426,6 +426,4 @@ static driver_t xdmatest_driver = {
sizeof(struct xdmatest_softc),
};
static devclass_t xdmatest_devclass;
DRIVER_MODULE(xdmatest, simplebus, xdmatest_driver, xdmatest_devclass, 0, 0);
DRIVER_MODULE(xdmatest, simplebus, xdmatest_driver, 0, 0);