From: Gabor Juhos Date: Tue, 14 Aug 2012 13:35:19 +0000 (+0200) Subject: watchdog: ath79_wdt: convert to use module_platform_driver X-Git-Tag: upstream/snapshot3+hdmi~5958^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8157becf8db0c798e1260f3af7c495a9b88e3b57;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git watchdog: ath79_wdt: convert to use module_platform_driver This makes the code a bit smaller by getting rid of some boilerplate code. Signed-off-by: Gabor Juhos Signed-off-by: Wim Van Sebroeck --- diff --git a/drivers/watchdog/ath79_wdt.c b/drivers/watchdog/ath79_wdt.c index 7c8ede7..38a999e 100644 --- a/drivers/watchdog/ath79_wdt.c +++ b/drivers/watchdog/ath79_wdt.c @@ -284,6 +284,7 @@ static void ath97_wdt_shutdown(struct platform_device *pdev) } static struct platform_driver ath79_wdt_driver = { + .probe = ath79_wdt_probe, .remove = ath79_wdt_remove, .shutdown = ath97_wdt_shutdown, .driver = { @@ -292,17 +293,7 @@ static struct platform_driver ath79_wdt_driver = { }, }; -static int __init ath79_wdt_init(void) -{ - return platform_driver_probe(&ath79_wdt_driver, ath79_wdt_probe); -} -module_init(ath79_wdt_init); - -static void __exit ath79_wdt_exit(void) -{ - platform_driver_unregister(&ath79_wdt_driver); -} -module_exit(ath79_wdt_exit); +module_platform_driver(ath79_wdt_driver); MODULE_DESCRIPTION("Atheros AR71XX/AR724X/AR913X hardware watchdog driver"); MODULE_AUTHOR("Gabor Juhos