Commit 3cd52c1e authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

net: fealnx: 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 6381c45b
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -1948,15 +1948,4 @@ static struct pci_driver fealnx_driver = {
	.remove		= fealnx_remove_one,
};

static int __init fealnx_init(void)
{
	return pci_register_driver(&fealnx_driver);
}

static void __exit fealnx_exit(void)
{
	pci_unregister_driver(&fealnx_driver);
}

module_init(fealnx_init);
module_exit(fealnx_exit);
module_pci_driver(fealnx_driver);