Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5a4123f3 authored by Peter Hüwe's avatar Peter Hüwe Committed by David S. Miller
Browse files

net/ethernet/broadcom/bnx2: Use module_pci_driver to register driver



Removing some boilerplate by using module_pci_driver instead of calling
register and unregister in the otherwise empty init/exit functions.

Signed-off-by: default avatarPeter Huewe <peterhuewe@gmx.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e6d20fca
Loading
Loading
Loading
Loading
+1 −15
Original line number Diff line number Diff line
@@ -8764,18 +8764,4 @@ static struct pci_driver bnx2_pci_driver = {
	.err_handler	= &bnx2_err_handler,
};

static int __init bnx2_init(void)
{
	return pci_register_driver(&bnx2_pci_driver);
}

static void __exit bnx2_cleanup(void)
{
	pci_unregister_driver(&bnx2_pci_driver);
}

module_init(bnx2_init);
module_exit(bnx2_cleanup);


module_pci_driver(bnx2_pci_driver);