OSDN Git Service

net: sundance: use module_pci_driver to simplify the code
authorWei Yongjun <weiyongjun1@huawei.com>
Wed, 7 Apr 2021 15:07:09 +0000 (15:07 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 7 Apr 2021 22:15:01 +0000 (15:15 -0700)
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>
drivers/net/ethernet/dlink/sundance.c

index e3a8858..c22ed8a 100644 (file)
@@ -1982,17 +1982,4 @@ static struct pci_driver sundance_driver = {
        .driver.pm      = &sundance_pm_ops,
 };
 
-static int __init sundance_init(void)
-{
-       return pci_register_driver(&sundance_driver);
-}
-
-static void __exit sundance_exit(void)
-{
-       pci_unregister_driver(&sundance_driver);
-}
-
-module_init(sundance_init);
-module_exit(sundance_exit);
-
-
+module_pci_driver(sundance_driver);