aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWei Yongjun <weiyongjun1@huawei.com>2021-04-07 15:07:08 +0000
committerDavid S. Miller <davem@davemloft.net>2021-04-07 15:15:01 -0700
commit02f2743ecd7baa64f0e716cde4f5b2fd18811955 (patch)
treef200204a942b6b48cece7f7482f252fece251146
parenttulip: windbond-840: use module_pci_driver to simplify the code (diff)
downloadlinux-dev-02f2743ecd7baa64f0e716cde4f5b2fd18811955.tar.xz
linux-dev-02f2743ecd7baa64f0e716cde4f5b2fd18811955.zip
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@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/ethernet/dec/tulip/de2104x.c13
1 files changed, 1 insertions, 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);