]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
watchdog: ath79_wdt: convert to use module_platform_driver
authorGabor Juhos <juhosg@openwrt.org>
Tue, 14 Aug 2012 13:35:19 +0000 (15:35 +0200)
committerWim Van Sebroeck <wim@iguana.be>
Wed, 19 Dec 2012 21:24:38 +0000 (22:24 +0100)
This makes the code a bit smaller by getting rid of
some boilerplate code.

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
drivers/watchdog/ath79_wdt.c

index 7c8ede7816b1a1efacf9a196648bcfb2b5bc4c0c..38a999e60c0d7f26f03b2eac77f39e4b2296413a 100644 (file)
@@ -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 <juhosg@openwrt.org");