mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-30 15:44:13 +08:00
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: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
335ab8ba61
commit
75498aa1af
@ -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>");
|
||||
|
Loading…
Reference in New Issue
Block a user