diff mbox series

[06/30] drivers: gpio: lantiq: use subsys_platform_driver()

Message ID 1560796871-18560-6-git-send-email-info@metux.net
State Not Applicable
Headers show
Series [01/30] include: linux: platform_device: more helpers for declaring platform drivers | expand

Commit Message

Enrico Weigelt, metux IT consult June 17, 2019, 6:40 p.m. UTC
From: Enrico Weigelt <info@metux.net>

Reduce driver init boilerplate by using the new
subsys_platform_driver() macro.

Signed-off-by: Enrico Weigelt <info@metux.net>
---
 drivers/gpio/gpio-mm-lantiq.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)
diff mbox series

Patch

diff --git a/drivers/gpio/gpio-mm-lantiq.c b/drivers/gpio/gpio-mm-lantiq.c
index b0754fe..3e5ef46 100644
--- a/drivers/gpio/gpio-mm-lantiq.c
+++ b/drivers/gpio/gpio-mm-lantiq.c
@@ -146,16 +146,4 @@  static int ltq_mm_remove(struct platform_device *pdev)
 		.of_match_table = ltq_mm_match,
 	},
 };
-
-static int __init ltq_mm_init(void)
-{
-	return platform_driver_register(&ltq_mm_driver);
-}
-
-subsys_initcall(ltq_mm_init);
-
-static void __exit ltq_mm_exit(void)
-{
-	platform_driver_unregister(&ltq_mm_driver);
-}
-module_exit(ltq_mm_exit);
+subsys_platform_driver(ltq_mm_driver);