git: b15b1fc19367 - main - bxe: Remove unused devclass argument to DRIVER_MODULE.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 06 May 2022 23:25:22 UTC
The branch main has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=b15b1fc19367af5d1055fcf0a8d50adece878dad commit b15b1fc19367af5d1055fcf0a8d50adece878dad Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2022-05-06 22:46:58 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2022-05-06 22:46:58 +0000 bxe: Remove unused devclass argument to DRIVER_MODULE. --- sys/dev/bxe/bxe.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/sys/dev/bxe/bxe.c b/sys/dev/bxe/bxe.c index e30c217e63ea..08a47c38f139 100644 --- a/sys/dev/bxe/bxe.c +++ b/sys/dev/bxe/bxe.c @@ -219,15 +219,9 @@ static driver_t bxe_driver = { sizeof(struct bxe_softc) /* extra data */ }; -/* - * FreeBSD dev class is needed to manage dev instances and - * to associate with a bus type - */ -static devclass_t bxe_devclass; - MODULE_DEPEND(bxe, pci, 1, 1, 1); MODULE_DEPEND(bxe, ether, 1, 1, 1); -DRIVER_MODULE(bxe, pci, bxe_driver, bxe_devclass, 0, 0); +DRIVER_MODULE(bxe, pci, bxe_driver, 0, 0); DEBUGNET_DEFINE(bxe);