diff options
Diffstat (limited to 'drivers/gpio/gpio-cs5535.c')
| -rw-r--r-- | drivers/gpio/gpio-cs5535.c | 14 | 
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/gpio/gpio-cs5535.c b/drivers/gpio/gpio-cs5535.c index 6e16cba56ad..19eda1bbe34 100644 --- a/drivers/gpio/gpio-cs5535.c +++ b/drivers/gpio/gpio-cs5535.c @@ -347,7 +347,6 @@ static int __devinit cs5535_gpio_probe(struct platform_device *pdev)  	if (err)  		goto release_region; -	dev_info(&pdev->dev, "GPIO support successfully loaded.\n");  	return 0;  release_region: @@ -382,18 +381,7 @@ static struct platform_driver cs5535_gpio_driver = {  	.remove = __devexit_p(cs5535_gpio_remove),  }; -static int __init cs5535_gpio_init(void) -{ -	return platform_driver_register(&cs5535_gpio_driver); -} - -static void __exit cs5535_gpio_exit(void) -{ -	platform_driver_unregister(&cs5535_gpio_driver); -} - -module_init(cs5535_gpio_init); -module_exit(cs5535_gpio_exit); +module_platform_driver(cs5535_gpio_driver);  MODULE_AUTHOR("Andres Salomon <dilinger@queued.net>");  MODULE_DESCRIPTION("AMD CS5535/CS5536 GPIO driver");  |