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(<q_mm_driver); -} - -subsys_initcall(ltq_mm_init); - -static void __exit ltq_mm_exit(void) -{ - platform_driver_unregister(<q_mm_driver); -} -module_exit(ltq_mm_exit); +subsys_platform_driver(ltq_mm_driver); -- 1.9.1