From: juhosg Date: Sun, 24 Feb 2013 18:08:03 +0000 (+0000) Subject: adm5120: remove __dev{init,exit} annotations X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=4a870e58a692c717ca3e4fd6d3f9dbb010cefbfb;p=openwrt.git adm5120: remove __dev{init,exit} annotations Signed-off-by: Gabor Juhos git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35768 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/adm5120/files/drivers/ata/pata_rb153_cf.c b/target/linux/adm5120/files/drivers/ata/pata_rb153_cf.c index 71f8ad6b89..92a4d1390d 100644 --- a/target/linux/adm5120/files/drivers/ata/pata_rb153_cf.c +++ b/target/linux/adm5120/files/drivers/ata/pata_rb153_cf.c @@ -148,7 +148,7 @@ static void rb153_pata_setup_port(struct ata_host *ah) ap->ioaddr.data_addr = info->iobase + RB153_CF_REG_DATA; } -static __devinit int rb153_pata_driver_probe(struct platform_device *pdev) +static int rb153_pata_driver_probe(struct platform_device *pdev) { unsigned int irq; int gpio; @@ -222,7 +222,7 @@ err_free_gpio: return ret; } -static __devexit int rb153_pata_driver_remove(struct platform_device *pdev) +static int rb153_pata_driver_remove(struct platform_device *pdev) { struct ata_host *ah = platform_get_drvdata(pdev); struct rb153_cf_info *info = ah->private_data; @@ -235,7 +235,7 @@ static __devexit int rb153_pata_driver_remove(struct platform_device *pdev) static struct platform_driver rb153_pata_platform_driver = { .probe = rb153_pata_driver_probe, - .remove = __devexit_p(rb153_pata_driver_remove), + .remove = rb153_pata_driver_remove, .driver = { .name = DRV_NAME, .owner = THIS_MODULE, diff --git a/target/linux/adm5120/files/drivers/net/adm5120sw.c b/target/linux/adm5120/files/drivers/net/adm5120sw.c index d80a6a3a13..7fbabb00e4 100644 --- a/target/linux/adm5120/files/drivers/net/adm5120sw.c +++ b/target/linux/adm5120/files/drivers/net/adm5120sw.c @@ -1083,7 +1083,7 @@ static void adm5120_switch_cleanup(void) adm5120_switch_rx_ring_free(); } -static int __devinit adm5120_switch_probe(struct platform_device *pdev) +static int adm5120_switch_probe(struct platform_device *pdev) { u32 t; int i, err; diff --git a/target/linux/adm5120/files/drivers/usb/host/adm5120-drv.c b/target/linux/adm5120/files/drivers/usb/host/adm5120-drv.c index 99ea9d530b..798fd22081 100644 --- a/target/linux/adm5120/files/drivers/usb/host/adm5120-drv.c +++ b/target/linux/adm5120/files/drivers/usb/host/adm5120-drv.c @@ -109,7 +109,7 @@ static void admhc_adm5120_remove(struct usb_hcd *hcd, usb_put_hcd(hcd); } -static int __devinit admhc_adm5120_start(struct usb_hcd *hcd) +static int admhc_adm5120_start(struct usb_hcd *hcd) { struct admhcd *ahcd = hcd_to_admhcd(hcd); int ret;