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-rc5t583.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/gpio/gpio-rc5t583.c b/drivers/gpio/gpio-rc5t583.c index 4fae3eb..d0dd3c2 100644 --- a/drivers/gpio/gpio-rc5t583.c +++ b/drivers/gpio/gpio-rc5t583.c @@ -133,9 +133,4 @@ static int rc5t583_gpio_probe(struct platform_device *pdev) }, .probe = rc5t583_gpio_probe, }; - -static int __init rc5t583_gpio_init(void) -{ - return platform_driver_register(&rc5t583_gpio_driver); -} -subsys_initcall(rc5t583_gpio_init); +subsys_platform_driver(rc5t583_gpio_driver); -- 1.9.1