diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-02-25 21:28:34 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-02-25 21:28:34 +0000 |
commit | 22f01b88d18d29d5855357a91ca0e7fc7fbe5c48 (patch) | |
tree | b6c180227c835a2d7988242ec9371a5e6591d9d7 /target | |
parent | 498da9e2eb9d95ebe13e3b7114af8c947e018b58 (diff) | |
download | upstream-22f01b88d18d29d5855357a91ca0e7fc7fbe5c48.tar.gz upstream-22f01b88d18d29d5855357a91ca0e7fc7fbe5c48.tar.bz2 upstream-22f01b88d18d29d5855357a91ca0e7fc7fbe5c48.zip |
ramips: remove __dev_{init,exit} annotations
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35798 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ramips/files/drivers/spi/spi-ramips.c | 4 | ||||
-rw-r--r-- | target/linux/ramips/files/drivers/watchdog/ramips_wdt.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/target/linux/ramips/files/drivers/spi/spi-ramips.c b/target/linux/ramips/files/drivers/spi/spi-ramips.c index e6a2d8e561..d2ceaf3b8d 100644 --- a/target/linux/ramips/files/drivers/spi/spi-ramips.c +++ b/target/linux/ramips/files/drivers/spi/spi-ramips.c @@ -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) diff --git a/target/linux/ramips/files/drivers/watchdog/ramips_wdt.c b/target/linux/ramips/files/drivers/watchdog/ramips_wdt.c index 2350fab7c4..fa7e9e85ef 100644 --- a/target/linux/ramips/files/drivers/watchdog/ramips_wdt.c +++ b/target/linux/ramips/files/drivers/watchdog/ramips_wdt.c @@ -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, |