[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20210407150708.364091-1-weiyongjun1@huawei.com>
Date: Wed, 7 Apr 2021 15:07:08 +0000
From: Wei Yongjun <weiyongjun1@...wei.com>
To: <weiyongjun1@...wei.com>, Jakub Kicinski <kuba@...nel.org>,
Moritz Fischer <mdf@...nel.org>,
Christophe JAILLET <christophe.jaillet@...adoo.fr>,
"Vaibhav Gupta" <vaibhavgupta40@...il.com>,
Lucy Yan <lucyyan@...gle.com>
CC: <netdev@...r.kernel.org>, <linux-parisc@...r.kernel.org>,
<kernel-janitors@...r.kernel.org>
Subject: [PATCH net-next] tulip: de2104x: 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@...wei.com>
---
.../net/ethernet/dec/tulip/de2104x.c | 13 +------------
1 file changed, 1 insertion(+), 12 deletions(-)
diff --git a/drivers/net/ethernet/dec/tulip/de2104x.c b/drivers/net/ethernet/dec/tulip/de2104x.c
index c3cbe55205a7..b018195f0243 100644
--- a/drivers/net/ethernet/dec/tulip/de2104x.c
+++ b/drivers/net/ethernet/dec/tulip/de2104x.c
@@ -2193,15 +2193,4 @@ static struct pci_driver de_driver = {
.driver.pm = &de_pm_ops,
};
-static int __init de_init (void)
-{
- return pci_register_driver(&de_driver);
-}
-
-static void __exit de_exit (void)
-{
- pci_unregister_driver (&de_driver);
-}
-
-module_init(de_init);
-module_exit(de_exit);
+module_pci_driver(de_driver);
Powered by blists - more mailing lists