tulip: windbond-840: 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:
Wei Yongjun 2021-04-07 15:07:07 +00:00 committed by David S. Miller
parent 1ffa660443
commit 95b2fbdb93

View File

@ -1629,15 +1629,4 @@ static struct pci_driver w840_driver = {
.driver.pm = &w840_pm_ops,
};
static int __init w840_init(void)
{
return pci_register_driver(&w840_driver);
}
static void __exit w840_exit(void)
{
pci_unregister_driver(&w840_driver);
}
module_init(w840_init);
module_exit(w840_exit);
module_pci_driver(w840_driver);