From: Enrico Weigelt <[email protected]> Reduce driver init boilerplate by using the new postcore_platform_driver() macro.
Signed-off-by: Enrico Weigelt <[email protected]> --- drivers/gpio/gpio-ep93xx.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/gpio/gpio-ep93xx.c b/drivers/gpio/gpio-ep93xx.c index 71728d6..d4dfb50 100644 --- a/drivers/gpio/gpio-ep93xx.c +++ b/drivers/gpio/gpio-ep93xx.c @@ -429,12 +429,7 @@ static int ep93xx_gpio_probe(struct platform_device *pdev) }, .probe = ep93xx_gpio_probe, }; - -static int __init ep93xx_gpio_init(void) -{ - return platform_driver_register(&ep93xx_gpio_driver); -} -postcore_initcall(ep93xx_gpio_init); +postcore_platform_driver(ep93xx_gpio_driver); MODULE_AUTHOR("Ryan Mallon <[email protected]> " "H Hartley Sweeten <[email protected]>"); -- 1.9.1

