ppc40x: remove __dev_{in,ex}it annotations

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

SVN-Revision: 35918
lede-17.01
Gabor Juhos 2013-03-10 07:20:54 +00:00
parent 446409f43e
commit d85ffaabe9
2 changed files with 6 additions and 6 deletions

View File

@ -326,7 +326,7 @@
+ ap->ioaddr.ctl_addr); + ap->ioaddr.ctl_addr);
+} +}
+ +
+static int __devinit magicbox_cf_of_probe(struct platform_device *op) +static int magicbox_cf_of_probe(struct platform_device *op)
+{ +{
+ struct magicbox_cf_info *info; + struct magicbox_cf_info *info;
+ struct ata_host *host; + struct ata_host *host;
@ -385,7 +385,7 @@
+ return ret; + return ret;
+} +}
+ +
+static __devexit int magicbox_cf_of_remove(struct platform_device *op) +static int magicbox_cf_of_remove(struct platform_device *op)
+{ +{
+ struct ata_host *host = dev_get_drvdata(&op->dev); + struct ata_host *host = dev_get_drvdata(&op->dev);
+ struct magicbox_cf_info *info = host->private_data; + struct magicbox_cf_info *info = host->private_data;
@ -405,7 +405,7 @@
+ +
+static struct platform_driver magicbox_cf_of_platform_driver = { +static struct platform_driver magicbox_cf_of_platform_driver = {
+ .probe = magicbox_cf_of_probe, + .probe = magicbox_cf_of_probe,
+ .remove = __devexit_p(magicbox_cf_of_remove), + .remove = magicbox_cf_of_remove,
+ .driver = { + .driver = {
+ .name = DRV_NAME, + .name = DRV_NAME,
+ .owner = THIS_MODULE, + .owner = THIS_MODULE,

View File

@ -44,7 +44,7 @@
+#define isp116x_of_delay NULL +#define isp116x_of_delay NULL
+#endif +#endif
+ +
+static int __devinit isp116x_of_probe(struct platform_device *op) +static int isp116x_of_probe(struct platform_device *op)
+{ +{
+ struct device_node *dn = op->dev.of_node; + struct device_node *dn = op->dev.of_node;
+ struct usb_hcd *hcd; + struct usb_hcd *hcd;
@ -164,7 +164,7 @@
+ return ret; + return ret;
+} +}
+ +
+static __devexit int isp116x_of_remove(struct platform_device *op) +static int isp116x_of_remove(struct platform_device *op)
+{ +{
+ struct usb_hcd *hcd = dev_get_drvdata(&op->dev); + struct usb_hcd *hcd = dev_get_drvdata(&op->dev);
+ struct isp116x *isp116x; + struct isp116x *isp116x;
@ -202,7 +202,7 @@
+ +
+static struct platform_driver isp116x_of_platform_driver = { +static struct platform_driver isp116x_of_platform_driver = {
+ .probe = isp116x_of_probe, + .probe = isp116x_of_probe,
+ .remove = __devexit_p(isp116x_of_remove), + .remove = isp116x_of_remove,
+ .driver = { + .driver = {
+ .name = "isp116x-hcd-of", + .name = "isp116x-hcd-of",
+ .owner = THIS_MODULE, + .owner = THIS_MODULE,