diff options
author | Vivek Gautam <gautam.vivek@samsung.com> | 2013-01-21 09:00:12 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-01-23 06:43:49 -0500 |
commit | 5a1a174c2c7f51b562071e06c9b52c5fd8adf6da (patch) | |
tree | f4d8b2bf0ef69f31576e56cf7ccf28fccb569bcd /drivers/usb/phy | |
parent | ed993bf19b98fdb0d364913174b5001fc3ac199b (diff) |
usb: phy: samsung: Remove __devinit, __devexit_p and __exit annotations
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>
Diffstat (limited to 'drivers/usb/phy')
-rw-r--r-- | drivers/usb/phy/samsung-usbphy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/phy/samsung-usbphy.c b/drivers/usb/phy/samsung-usbphy.c index 9e9861c673ab..6ea553733832 100644 --- a/drivers/usb/phy/samsung-usbphy.c +++ b/drivers/usb/phy/samsung-usbphy.c | |||
@@ -769,7 +769,7 @@ static inline const struct samsung_usbphy_drvdata | |||
769 | platform_get_device_id(pdev)->driver_data; | 769 | platform_get_device_id(pdev)->driver_data; |
770 | } | 770 | } |
771 | 771 | ||
772 | static int __devinit samsung_usbphy_probe(struct platform_device *pdev) | 772 | static int samsung_usbphy_probe(struct platform_device *pdev) |
773 | { | 773 | { |
774 | struct samsung_usbphy *sphy; | 774 | struct samsung_usbphy *sphy; |
775 | struct usb_otg *otg; | 775 | struct usb_otg *otg; |
@@ -847,7 +847,7 @@ static int __devinit samsung_usbphy_probe(struct platform_device *pdev) | |||
847 | return usb_add_phy(&sphy->phy, USB_PHY_TYPE_USB2); | 847 | return usb_add_phy(&sphy->phy, USB_PHY_TYPE_USB2); |
848 | } | 848 | } |
849 | 849 | ||
850 | static int __exit samsung_usbphy_remove(struct platform_device *pdev) | 850 | static int samsung_usbphy_remove(struct platform_device *pdev) |
851 | { | 851 | { |
852 | struct samsung_usbphy *sphy = platform_get_drvdata(pdev); | 852 | struct samsung_usbphy *sphy = platform_get_drvdata(pdev); |
853 | 853 | ||
@@ -913,7 +913,7 @@ MODULE_DEVICE_TABLE(platform, samsung_usbphy_driver_ids); | |||
913 | 913 | ||
914 | static struct platform_driver samsung_usbphy_driver = { | 914 | static struct platform_driver samsung_usbphy_driver = { |
915 | .probe = samsung_usbphy_probe, | 915 | .probe = samsung_usbphy_probe, |
916 | .remove = __devexit_p(samsung_usbphy_remove), | 916 | .remove = samsung_usbphy_remove, |
917 | .id_table = samsung_usbphy_driver_ids, | 917 | .id_table = samsung_usbphy_driver_ids, |
918 | .driver = { | 918 | .driver = { |
919 | .name = "samsung-usbphy", | 919 | .name = "samsung-usbphy", |