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

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

net/ethernet/icplus/ipg: 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 b6f57210
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -2298,15 +2298,4 @@ static struct pci_driver ipg_pci_driver = {
	.remove		= ipg_remove,
};

static int __init ipg_init_module(void)
{
	return pci_register_driver(&ipg_pci_driver);
}

static void __exit ipg_exit_module(void)
{
	pci_unregister_driver(&ipg_pci_driver);
}

module_init(ipg_init_module);
module_exit(ipg_exit_module);
module_pci_driver(ipg_pci_driver);