]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/watchdog/pnx4008_wdt.c
watchdog: remove use of __devinitdata
[karo-tx-linux.git] / drivers / watchdog / pnx4008_wdt.c
index 87722e1260581ca27a9f8b7b1c34098611ec6022..4f7afeab6698340e67323b023b0f437de3f59ca7 100644 (file)
@@ -146,7 +146,7 @@ static struct watchdog_device pnx4008_wdd = {
        .max_timeout = MAX_HEARTBEAT,
 };
 
-static int __devinit pnx4008_wdt_probe(struct platform_device *pdev)
+static int pnx4008_wdt_probe(struct platform_device *pdev)
 {
        struct resource *r;
        int ret = 0;
@@ -217,7 +217,7 @@ static struct platform_driver platform_wdt_driver = {
                .of_match_table = of_match_ptr(pnx4008_wdt_match),
        },
        .probe = pnx4008_wdt_probe,
-       .remove = __devexit_p(pnx4008_wdt_remove),
+       .remove = pnx4008_wdt_remove,
 };
 
 module_platform_driver(platform_wdt_driver);