diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:21:08 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 16:27:16 -0500 |
commit | 7690417db5085f0de03aa70b8ca01b0118e8a1b4 (patch) | |
tree | 794777a784aac86d9e30627092429d754b9070f4 /drivers/usb/host/isp1760-if.c | |
parent | 2bd6a021e887c675116ff8cdacc3af49999a2224 (diff) |
usb: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p 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>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/isp1760-if.c')
-rw-r--r-- | drivers/usb/host/isp1760-if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/isp1760-if.c b/drivers/usb/host/isp1760-if.c index 958379f9de79..5fb3caee7706 100644 --- a/drivers/usb/host/isp1760-if.c +++ b/drivers/usb/host/isp1760-if.c | |||
@@ -432,7 +432,7 @@ static int __devexit isp1760_plat_remove(struct platform_device *pdev) | |||
432 | 432 | ||
433 | static struct platform_driver isp1760_plat_driver = { | 433 | static struct platform_driver isp1760_plat_driver = { |
434 | .probe = isp1760_plat_probe, | 434 | .probe = isp1760_plat_probe, |
435 | .remove = __devexit_p(isp1760_plat_remove), | 435 | .remove = isp1760_plat_remove, |
436 | .driver = { | 436 | .driver = { |
437 | .name = "isp1760", | 437 | .name = "isp1760", |
438 | }, | 438 | }, |