linux-parisc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next] tulip: windbond-840: use module_pci_driver to simplify the code
@ 2021-04-07 15:07 Wei Yongjun
  2021-04-07 22:20 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 2+ messages in thread
From: Wei Yongjun @ 2021-04-07 15:07 UTC (permalink / raw)
  To: weiyongjun1, Jakub Kicinski, Christophe JAILLET, Vaibhav Gupta,
	Gustavo A. R. Silva
  Cc: netdev, linux-parisc, kernel-janitors

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>
---
 .../ethernet/dec/tulip/winbond-840.c    | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/drivers/net/ethernet/dec/tulip/winbond-840.c b/drivers/net/ethernet/dec/tulip/winbond-840.c
index 89cbdc1f4857..514df170ec5d 100644
--- a/drivers/net/ethernet/dec/tulip/winbond-840.c
+++ b/drivers/net/ethernet/dec/tulip/winbond-840.c
@@ -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);


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH net-next] tulip: windbond-840: use module_pci_driver to simplify the code
  2021-04-07 15:07 [PATCH net-next] tulip: windbond-840: use module_pci_driver to simplify the code Wei Yongjun
@ 2021-04-07 22:20 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-04-07 22:20 UTC (permalink / raw)
  To: Wei Yongjun
  Cc: kuba, christophe.jaillet, vaibhavgupta40, gustavoars, netdev,
	linux-parisc, kernel-janitors

Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Wed, 7 Apr 2021 15:07:07 +0000 you wrote:
> 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>
> ---
>  .../ethernet/dec/tulip/winbond-840.c    | 13 +------------
>  1 file changed, 1 insertion(+), 12 deletions(-)

Here is the summary with links:
  - [net-next] tulip: windbond-840: use module_pci_driver to simplify the code
    https://git.kernel.org/netdev/net-next/c/95b2fbdb9321

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-04-07 22:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-07 15:07 [PATCH net-next] tulip: windbond-840: use module_pci_driver to simplify the code Wei Yongjun
2021-04-07 22:20 ` patchwork-bot+netdevbpf

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).