]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
usb: phy: samsung: Remove __devinit, __devexit_p and __exit annotations
authorVivek Gautam <gautam.vivek@samsung.com>
Mon, 21 Jan 2013 14:00:12 +0000 (19:30 +0530)
committerFelipe Balbi <balbi@ti.com>
Wed, 23 Jan 2013 11:43:49 +0000 (13:43 +0200)
Dropping __devinit, __devexit_p, __exit annotations since they are
nop and no longer supported.

Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/phy/samsung-usbphy.c

index 9e9861c673ab137e873663e1d36d4928fa51b7f0..6ea5537338325f6f8ed9fe10cb7756bb79f2daf2 100644 (file)
@@ -769,7 +769,7 @@ static inline const struct samsung_usbphy_drvdata
                                platform_get_device_id(pdev)->driver_data;
 }
 
-static int __devinit samsung_usbphy_probe(struct platform_device *pdev)
+static int samsung_usbphy_probe(struct platform_device *pdev)
 {
        struct samsung_usbphy *sphy;
        struct usb_otg *otg;
@@ -847,7 +847,7 @@ static int __devinit samsung_usbphy_probe(struct platform_device *pdev)
        return usb_add_phy(&sphy->phy, USB_PHY_TYPE_USB2);
 }
 
-static int __exit samsung_usbphy_remove(struct platform_device *pdev)
+static int samsung_usbphy_remove(struct platform_device *pdev)
 {
        struct samsung_usbphy *sphy = platform_get_drvdata(pdev);
 
@@ -913,7 +913,7 @@ MODULE_DEVICE_TABLE(platform, samsung_usbphy_driver_ids);
 
 static struct platform_driver samsung_usbphy_driver = {
        .probe          = samsung_usbphy_probe,
-       .remove         = __devexit_p(samsung_usbphy_remove),
+       .remove         = samsung_usbphy_remove,
        .id_table       = samsung_usbphy_driver_ids,
        .driver         = {
                .name   = "samsung-usbphy",