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

Commit 75498aa1 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

net: cavium: 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 335ab8ba
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -336,18 +336,7 @@ static struct pci_driver cavium_ptp_driver = {
	.remove = cavium_ptp_remove,
};

static int __init cavium_ptp_init_module(void)
{
	return pci_register_driver(&cavium_ptp_driver);
}

static void __exit cavium_ptp_cleanup_module(void)
{
	pci_unregister_driver(&cavium_ptp_driver);
}

module_init(cavium_ptp_init_module);
module_exit(cavium_ptp_cleanup_module);
module_pci_driver(cavium_ptp_driver);

MODULE_DESCRIPTION(DRV_NAME);
MODULE_AUTHOR("Cavium Networks <support@cavium.com>");