lkml.org 
[lkml]   [2020]   [May]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] watchdog: gef_wdt.c: convert to module_platform_driver()
Date
The driver init and exit function don't do anything besides registering
and unregistering the platform driver, so the module_platform_driver()
macro could just be used instead of having separate functions.

Signed-off-by: Harshal Chaudhari <harshalchau04@gmail.com>
---
drivers/watchdog/gef_wdt.c | 14 +-------------
1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/drivers/watchdog/gef_wdt.c b/drivers/watchdog/gef_wdt.c
index f6541d1b65e3..4421a452d0f5 100644
--- a/drivers/watchdog/gef_wdt.c
+++ b/drivers/watchdog/gef_wdt.c
@@ -311,19 +311,7 @@ static struct platform_driver gef_wdt_driver = {
.remove = gef_wdt_remove,
};

-static int __init gef_wdt_init(void)
-{
- pr_info("GE watchdog driver\n");
- return platform_driver_register(&gef_wdt_driver);
-}
-
-static void __exit gef_wdt_exit(void)
-{
- platform_driver_unregister(&gef_wdt_driver);
-}
-
-module_init(gef_wdt_init);
-module_exit(gef_wdt_exit);
+module_platform_driver(gef_wdt_driver);

MODULE_AUTHOR("Martyn Welch <martyn.welch@ge.com>");
MODULE_DESCRIPTION("GE watchdog driver");
--
2.17.1
\
 
 \ /
  Last update: 2020-05-18 13:50    [W:0.030 / U:0.756 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site