ramips: remove __dev_{init,exit} annotations
authorGabor Juhos <juhosg@openwrt.org>
Mon, 25 Feb 2013 21:28:34 +0000 (21:28 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Mon, 25 Feb 2013 21:28:34 +0000 (21:28 +0000)
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35798

target/linux/ramips/files/drivers/spi/spi-ramips.c
target/linux/ramips/files/drivers/watchdog/ramips_wdt.c

index e6a2d8e56180c65efb2e64d408c78e722d46458a..d2ceaf3b8db0f54c29e14b307eb9ce52234a28f0 100644 (file)
@@ -501,7 +501,7 @@ out_put_master:
        return status;
 }
 
-static int __devexit ramips_spi_remove(struct platform_device *pdev)
+static int ramips_spi_remove(struct platform_device *pdev)
 {
        struct spi_master *master;
        struct ramips_spi *rs;
@@ -530,7 +530,7 @@ static struct platform_driver ramips_spi_driver = {
                .name   = DRIVER_NAME,
                .owner  = THIS_MODULE,
        },
-       .remove         = __devexit_p(ramips_spi_remove),
+       .remove         = ramips_spi_remove,
 };
 
 static int __init ramips_spi_init(void)
index 2350fab7c4761383df1e65128d6ef6c7b2a5933b..fa7e9e85ef7d927e0045a04999e780806fe82047 100644 (file)
@@ -255,7 +255,7 @@ static struct miscdevice ramips_wdt_miscdev = {
        .fops = &ramips_wdt_fops,
 };
 
-static int __devinit ramips_wdt_probe(struct platform_device *pdev)
+static int ramips_wdt_probe(struct platform_device *pdev)
 {
        struct resource *res;
        int err;
@@ -313,7 +313,7 @@ err_unmap:
        return err;
 }
 
-static int __devexit ramips_wdt_remove(struct platform_device *pdev)
+static int ramips_wdt_remove(struct platform_device *pdev)
 {
        misc_deregister(&ramips_wdt_miscdev);
        clk_disable(ramips_wdt_clk);
@@ -328,7 +328,7 @@ static void ramips_wdt_shutdown(struct platform_device *pdev)
 }
 
 static struct platform_driver ramips_wdt_driver = {
-       .remove         = __devexit_p(ramips_wdt_remove),
+       .remove         = ramips_wdt_remove,
        .shutdown       = ramips_wdt_shutdown,
        .driver         = {
                .name   = DRIVER_NAME,