* [PATCH -next] net: ethernet: 8390: ne2k-pci: use module_pci_driver() macro
@ 2023-08-09 9:31 Yang Yingliang
2023-08-09 9:41 ` Yang Yingliang
0 siblings, 1 reply; 2+ messages in thread
From: Yang Yingliang @ 2023-08-09 9:31 UTC (permalink / raw)
To: netdev; +Cc: davem, edumazet, kuba, pabeni, yangyingliang
The driver init/exit() function don't do anything special, it
can use the module_pci_driver() macro to eliminate boilerplate
code.
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
drivers/net/ethernet/8390/ne2k-pci.c | 16 +---------------
1 file changed, 1 insertion(+), 15 deletions(-)
diff --git a/drivers/net/ethernet/8390/ne2k-pci.c b/drivers/net/ethernet/8390/ne2k-pci.c
index 2c6bd36d2f31..65f56a98c0a0 100644
--- a/drivers/net/ethernet/8390/ne2k-pci.c
+++ b/drivers/net/ethernet/8390/ne2k-pci.c
@@ -731,18 +731,4 @@ static struct pci_driver ne2k_driver = {
.id_table = ne2k_pci_tbl,
.driver.pm = &ne2k_pci_pm_ops,
};
-
-
-static int __init ne2k_pci_init(void)
-{
- return pci_register_driver(&ne2k_driver);
-}
-
-
-static void __exit ne2k_pci_cleanup(void)
-{
- pci_unregister_driver(&ne2k_driver);
-}
-
-module_init(ne2k_pci_init);
-module_exit(ne2k_pci_cleanup);
+module_pci_driver(ne2k_driver);
--
2.25.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH -next] net: ethernet: 8390: ne2k-pci: use module_pci_driver() macro
2023-08-09 9:31 [PATCH -next] net: ethernet: 8390: ne2k-pci: use module_pci_driver() macro Yang Yingliang
@ 2023-08-09 9:41 ` Yang Yingliang
0 siblings, 0 replies; 2+ messages in thread
From: Yang Yingliang @ 2023-08-09 9:41 UTC (permalink / raw)
To: netdev; +Cc: davem, edumazet, kuba, pabeni, yangyingliang
Wrong prefix subject, drop this patch.
On 2023/8/9 17:31, Yang Yingliang wrote:
> The driver init/exit() function don't do anything special, it
> can use the module_pci_driver() macro to eliminate boilerplate
> code.
>
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-08-09 9:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-09 9:31 [PATCH -next] net: ethernet: 8390: ne2k-pci: use module_pci_driver() macro Yang Yingliang
2023-08-09 9:41 ` Yang Yingliang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).