Commit 1ffa6604 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

enic: use module_pci_driver to simplify the code



Use the module_pci_driver() macro to make the code simpler
by eliminating module_init and module_exit calls.

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4e92cac8
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -3040,15 +3040,4 @@ static struct pci_driver enic_driver = {
	.remove = enic_remove,
};

static int __init enic_init_module(void)
{
	return pci_register_driver(&enic_driver);
}

static void __exit enic_cleanup_module(void)
{
	pci_unregister_driver(&enic_driver);
}

module_init(enic_init_module);
module_exit(enic_cleanup_module);
module_pci_driver(enic_driver);