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

From: Enrico Weigelt, metux IT consult
Date: Mon Jun 17 2019 - 14:47:24 EST


From: Enrico Weigelt <info@xxxxxxxxx>

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

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

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);
--
1.9.1