All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next] net: encx24j600: use module_spi_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, Jason Yan, dingsenjie, Chuhong Yuan
  Cc: netdev, kernel-janitors

module_spi_driver() makes the code simpler by eliminating
boilerplate code.

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
 .../net/ethernet/microchip/encx24j600.c  | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/drivers/net/ethernet/microchip/encx24j600.c b/drivers/net/ethernet/microchip/encx24j600.c
index a66a179236fd..3658c4ae3c37 100644
--- a/drivers/net/ethernet/microchip/encx24j600.c
+++ b/drivers/net/ethernet/microchip/encx24j600.c
@@ -1117,17 +1117,7 @@ static struct spi_driver encx24j600_spi_net_driver = {
 	.id_table	= encx24j600_spi_id_table,
 };
 
-static int __init encx24j600_init(void)
-{
-	return spi_register_driver(&encx24j600_spi_net_driver);
-}
-module_init(encx24j600_init);
-
-static void encx24j600_exit(void)
-{
-	spi_unregister_driver(&encx24j600_spi_net_driver);
-}
-module_exit(encx24j600_exit);
+module_spi_driver(encx24j600_spi_net_driver);
 
 MODULE_DESCRIPTION(DRV_NAME " ethernet driver");
 MODULE_AUTHOR("Jon Ringle <jringle@gridpoint.com>");


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

* Re: [PATCH net-next] net: encx24j600: use module_spi_driver to simplify the code
  2021-04-07 15:07 [PATCH net-next] net: encx24j600: use module_spi_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, yanaijie, dingsenjie, hslester96, netdev, kernel-janitors

Hello:

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

On Wed, 7 Apr 2021 15:07:04 +0000 you wrote:
> module_spi_driver() makes the code simpler by eliminating
> boilerplate code.
> 
> Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
> ---
>  .../net/ethernet/microchip/encx24j600.c  | 12 +-----------
>  1 file changed, 1 insertion(+), 11 deletions(-)

Here is the summary with links:
  - [net-next] net: encx24j600: use module_spi_driver to simplify the code
    https://git.kernel.org/netdev/net-next/c/4e92cac843d3

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] net: encx24j600: use module_spi_driver to simplify the code Wei Yongjun
2021-04-07 22:20 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.