aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-11-19 13:21:08 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-21 16:27:16 -0500
commit7690417db5085f0de03aa70b8ca01b0118e8a1b4 (patch)
tree794777a784aac86d9e30627092429d754b9070f4 /drivers/usb/musb
parent2bd6a021e887c675116ff8cdacc3af49999a2224 (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/musb')
-rw-r--r--drivers/usb/musb/am35x.c2
-rw-r--r--drivers/usb/musb/da8xx.c2
-rw-r--r--drivers/usb/musb/davinci.c2
-rw-r--r--drivers/usb/musb/musb_core.c2
-rw-r--r--drivers/usb/musb/musb_dsps.c2
-rw-r--r--drivers/usb/musb/omap2430.c2
-rw-r--r--drivers/usb/musb/tusb6010.c2
-rw-r--r--drivers/usb/musb/ux500.c2
8 files changed, 8 insertions, 8 deletions
diff --git a/drivers/usb/musb/am35x.c b/drivers/usb/musb/am35x.c
index 3baccf765418..49e8ce7ec26b 100644
--- a/drivers/usb/musb/am35x.c
+++ b/drivers/usb/musb/am35x.c
@@ -629,7 +629,7 @@ static struct dev_pm_ops am35x_pm_ops = {
629 629
630static struct platform_driver am35x_driver = { 630static struct platform_driver am35x_driver = {
631 .probe = am35x_probe, 631 .probe = am35x_probe,
632 .remove = __devexit_p(am35x_remove), 632 .remove = am35x_remove,
633 .driver = { 633 .driver = {
634 .name = "musb-am35x", 634 .name = "musb-am35x",
635 .pm = DEV_PM_OPS, 635 .pm = DEV_PM_OPS,
diff --git a/drivers/usb/musb/da8xx.c b/drivers/usb/musb/da8xx.c
index 67b8ae704e9a..51ace9bf73df 100644
--- a/drivers/usb/musb/da8xx.c
+++ b/drivers/usb/musb/da8xx.c
@@ -569,7 +569,7 @@ static int __devexit da8xx_remove(struct platform_device *pdev)
569 569
570static struct platform_driver da8xx_driver = { 570static struct platform_driver da8xx_driver = {
571 .probe = da8xx_probe, 571 .probe = da8xx_probe,
572 .remove = __devexit_p(da8xx_remove), 572 .remove = da8xx_remove,
573 .driver = { 573 .driver = {
574 .name = "musb-da8xx", 574 .name = "musb-da8xx",
575 }, 575 },
diff --git a/drivers/usb/musb/davinci.c b/drivers/usb/musb/davinci.c
index b3c0a943950c..e01087b44e09 100644
--- a/drivers/usb/musb/davinci.c
+++ b/drivers/usb/musb/davinci.c
@@ -601,7 +601,7 @@ static int __devexit davinci_remove(struct platform_device *pdev)
601 601
602static struct platform_driver davinci_driver = { 602static struct platform_driver davinci_driver = {
603 .probe = davinci_probe, 603 .probe = davinci_probe,
604 .remove = __devexit_p(davinci_remove), 604 .remove = davinci_remove,
605 .driver = { 605 .driver = {
606 .name = "musb-davinci", 606 .name = "musb-davinci",
607 }, 607 },
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c
index 774d8154a286..69cfa18bb2df 100644
--- a/drivers/usb/musb/musb_core.c
+++ b/drivers/usb/musb/musb_core.c
@@ -2288,7 +2288,7 @@ static struct platform_driver musb_driver = {
2288 .pm = MUSB_DEV_PM_OPS, 2288 .pm = MUSB_DEV_PM_OPS,
2289 }, 2289 },
2290 .probe = musb_probe, 2290 .probe = musb_probe,
2291 .remove = __devexit_p(musb_remove), 2291 .remove = musb_remove,
2292 .shutdown = musb_shutdown, 2292 .shutdown = musb_shutdown,
2293}; 2293};
2294 2294
diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c
index b108473e4d5f..80e2b03965c8 100644
--- a/drivers/usb/musb/musb_dsps.c
+++ b/drivers/usb/musb/musb_dsps.c
@@ -767,7 +767,7 @@ MODULE_DEVICE_TABLE(of, musb_dsps_of_match);
767 767
768static struct platform_driver dsps_usbss_driver = { 768static struct platform_driver dsps_usbss_driver = {
769 .probe = dsps_probe, 769 .probe = dsps_probe,
770 .remove = __devexit_p(dsps_remove), 770 .remove = dsps_remove,
771 .driver = { 771 .driver = {
772 .name = "musb-dsps", 772 .name = "musb-dsps",
773 .pm = &dsps_pm_ops, 773 .pm = &dsps_pm_ops,
diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c
index 32f531e7a2e6..1150b4b6a090 100644
--- a/drivers/usb/musb/omap2430.c
+++ b/drivers/usb/musb/omap2430.c
@@ -674,7 +674,7 @@ MODULE_DEVICE_TABLE(of, omap2430_id_table);
674 674
675static struct platform_driver omap2430_driver = { 675static struct platform_driver omap2430_driver = {
676 .probe = omap2430_probe, 676 .probe = omap2430_probe,
677 .remove = __devexit_p(omap2430_remove), 677 .remove = omap2430_remove,
678 .driver = { 678 .driver = {
679 .name = "musb-omap2430", 679 .name = "musb-omap2430",
680 .pm = DEV_PM_OPS, 680 .pm = DEV_PM_OPS,
diff --git a/drivers/usb/musb/tusb6010.c b/drivers/usb/musb/tusb6010.c
index 812719b683d1..b816517d8cbf 100644
--- a/drivers/usb/musb/tusb6010.c
+++ b/drivers/usb/musb/tusb6010.c
@@ -1227,7 +1227,7 @@ static int __devexit tusb_remove(struct platform_device *pdev)
1227 1227
1228static struct platform_driver tusb_driver = { 1228static struct platform_driver tusb_driver = {
1229 .probe = tusb_probe, 1229 .probe = tusb_probe,
1230 .remove = __devexit_p(tusb_remove), 1230 .remove = tusb_remove,
1231 .driver = { 1231 .driver = {
1232 .name = "musb-tusb", 1232 .name = "musb-tusb",
1233 }, 1233 },
diff --git a/drivers/usb/musb/ux500.c b/drivers/usb/musb/ux500.c
index 286f1be6594a..1d815578dde5 100644
--- a/drivers/usb/musb/ux500.c
+++ b/drivers/usb/musb/ux500.c
@@ -216,7 +216,7 @@ static const struct dev_pm_ops ux500_pm_ops = {
216 216
217static struct platform_driver ux500_driver = { 217static struct platform_driver ux500_driver = {
218 .probe = ux500_probe, 218 .probe = ux500_probe,
219 .remove = __devexit_p(ux500_remove), 219 .remove = ux500_remove,
220 .driver = { 220 .driver = {
221 .name = "musb-ux500", 221 .name = "musb-ux500",
222 .pm = DEV_PM_OPS, 222 .pm = DEV_PM_OPS,