diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:26:20 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 16:27:17 -0500 |
commit | fb4e98ab63433c4d3a1588ea91c73f1cd7ebaa00 (patch) | |
tree | 52b745201023fce78f4f40a2b23e48421165d888 /drivers/usb/phy | |
parent | 2f82686e8c261d96d07bb1594d987cd6d5c64af6 (diff) |
usb: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Peter Korsgaard <jacmet@sunsite.dk>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Acked-by: Felipe Balbi <balbi@ti.com>
Cc: Li Yang <leoli@freescale.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: Wan ZongShun <mcuos.com@gmail.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Kukjin Kim <kgene.kim@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/phy')
-rw-r--r-- | drivers/usb/phy/omap-usb2.c | 2 | ||||
-rw-r--r-- | drivers/usb/phy/rcar-phy.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/phy/omap-usb2.c b/drivers/usb/phy/omap-usb2.c index c10fb8b1fdbc..26ae8f49225c 100644 --- a/drivers/usb/phy/omap-usb2.c +++ b/drivers/usb/phy/omap-usb2.c | |||
@@ -199,7 +199,7 @@ static int omap_usb2_probe(struct platform_device *pdev) | |||
199 | return 0; | 199 | return 0; |
200 | } | 200 | } |
201 | 201 | ||
202 | static int __devexit omap_usb2_remove(struct platform_device *pdev) | 202 | static int omap_usb2_remove(struct platform_device *pdev) |
203 | { | 203 | { |
204 | struct omap_usb *phy = platform_get_drvdata(pdev); | 204 | struct omap_usb *phy = platform_get_drvdata(pdev); |
205 | 205 | ||
diff --git a/drivers/usb/phy/rcar-phy.c b/drivers/usb/phy/rcar-phy.c index 84ac2a77de72..a35681b0c501 100644 --- a/drivers/usb/phy/rcar-phy.c +++ b/drivers/usb/phy/rcar-phy.c | |||
@@ -196,7 +196,7 @@ static int rcar_usb_phy_probe(struct platform_device *pdev) | |||
196 | return ret; | 196 | return ret; |
197 | } | 197 | } |
198 | 198 | ||
199 | static int __devexit rcar_usb_phy_remove(struct platform_device *pdev) | 199 | static int rcar_usb_phy_remove(struct platform_device *pdev) |
200 | { | 200 | { |
201 | struct rcar_usb_phy_priv *priv = platform_get_drvdata(pdev); | 201 | struct rcar_usb_phy_priv *priv = platform_get_drvdata(pdev); |
202 | 202 | ||