aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-11-19 13:25:20 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-21 16:27:16 -0500
commit2f82686e8c261d96d07bb1594d987cd6d5c64af6 (patch)
tree5684b99b359be81a8486f601abbc79dd598f1de6 /drivers/usb
parentd3608b6dafc570bb671c3338288eb2523f8cd52a (diff)
usb: remove use of __devinitconst
CONFIG_HOTPLUG is going away as an option so __devinitconst is no longer needed. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Li Yang <leoli@freescale.com> Acked-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/gadget/fsl_qe_udc.c2
-rw-r--r--drivers/usb/host/bcma-hcd.c2
-rw-r--r--drivers/usb/host/pci-quirks.c2
-rw-r--r--drivers/usb/host/ssb-hcd.c2
-rw-r--r--drivers/usb/musb/musb_dsps.c6
5 files changed, 7 insertions, 7 deletions
diff --git a/drivers/usb/gadget/fsl_qe_udc.c b/drivers/usb/gadget/fsl_qe_udc.c
index 8ad04a0b9e75..b13bc73f56b9 100644
--- a/drivers/usb/gadget/fsl_qe_udc.c
+++ b/drivers/usb/gadget/fsl_qe_udc.c
@@ -2710,7 +2710,7 @@ static int __devexit qe_udc_remove(struct platform_device *ofdev)
2710} 2710}
2711 2711
2712/*-------------------------------------------------------------------------*/ 2712/*-------------------------------------------------------------------------*/
2713static const struct of_device_id qe_udc_match[] __devinitconst = { 2713static const struct of_device_id qe_udc_match[] = {
2714 { 2714 {
2715 .compatible = "fsl,mpc8323-qe-usb", 2715 .compatible = "fsl,mpc8323-qe-usb",
2716 .data = (void *)PORT_QE, 2716 .data = (void *)PORT_QE,
diff --git a/drivers/usb/host/bcma-hcd.c b/drivers/usb/host/bcma-hcd.c
index 8c83ed90acba..649780b480bc 100644
--- a/drivers/usb/host/bcma-hcd.c
+++ b/drivers/usb/host/bcma-hcd.c
@@ -305,7 +305,7 @@ static int bcma_hcd_resume(struct bcma_device *dev)
305#define bcma_hcd_resume NULL 305#define bcma_hcd_resume NULL
306#endif /* CONFIG_PM */ 306#endif /* CONFIG_PM */
307 307
308static const struct bcma_device_id bcma_hcd_table[] __devinitconst = { 308static const struct bcma_device_id bcma_hcd_table[] = {
309 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_USB20_HOST, BCMA_ANY_REV, BCMA_ANY_CLASS), 309 BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_USB20_HOST, BCMA_ANY_REV, BCMA_ANY_CLASS),
310 BCMA_CORETABLE_END 310 BCMA_CORETABLE_END
311}; 311};
diff --git a/drivers/usb/host/pci-quirks.c b/drivers/usb/host/pci-quirks.c
index a018e706c0e1..15cfb06769e6 100644
--- a/drivers/usb/host/pci-quirks.c
+++ b/drivers/usb/host/pci-quirks.c
@@ -533,7 +533,7 @@ static void quirk_usb_handoff_ohci(struct pci_dev *pdev)
533 iounmap(base); 533 iounmap(base);
534} 534}
535 535
536static const struct dmi_system_id __devinitconst ehci_dmi_nohandoff_table[] = { 536static const struct dmi_system_id ehci_dmi_nohandoff_table[] = {
537 { 537 {
538 /* Pegatron Lucid (ExoPC) */ 538 /* Pegatron Lucid (ExoPC) */
539 .matches = { 539 .matches = {
diff --git a/drivers/usb/host/ssb-hcd.c b/drivers/usb/host/ssb-hcd.c
index 79aa95832b26..bdb9d7055da9 100644
--- a/drivers/usb/host/ssb-hcd.c
+++ b/drivers/usb/host/ssb-hcd.c
@@ -248,7 +248,7 @@ static int ssb_hcd_resume(struct ssb_device *dev)
248#define ssb_hcd_resume NULL 248#define ssb_hcd_resume NULL
249#endif /* CONFIG_PM */ 249#endif /* CONFIG_PM */
250 250
251static const struct ssb_device_id ssb_hcd_table[] __devinitconst = { 251static const struct ssb_device_id ssb_hcd_table[] = {
252 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB11_HOSTDEV, SSB_ANY_REV), 252 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB11_HOSTDEV, SSB_ANY_REV),
253 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB11_HOST, SSB_ANY_REV), 253 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB11_HOST, SSB_ANY_REV),
254 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB20_HOST, SSB_ANY_REV), 254 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_USB20_HOST, SSB_ANY_REV),
diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c
index f8affd7a30c0..605cd59d149c 100644
--- a/drivers/usb/musb/musb_dsps.c
+++ b/drivers/usb/musb/musb_dsps.c
@@ -716,7 +716,7 @@ static int dsps_resume(struct device *dev)
716 716
717static SIMPLE_DEV_PM_OPS(dsps_pm_ops, dsps_suspend, dsps_resume); 717static SIMPLE_DEV_PM_OPS(dsps_pm_ops, dsps_suspend, dsps_resume);
718 718
719static const struct dsps_musb_wrapper ti81xx_driver_data __devinitconst = { 719static const struct dsps_musb_wrapper ti81xx_driver_data = {
720 .revision = 0x00, 720 .revision = 0x00,
721 .control = 0x14, 721 .control = 0x14,
722 .status = 0x18, 722 .status = 0x18,
@@ -747,7 +747,7 @@ static const struct dsps_musb_wrapper ti81xx_driver_data __devinitconst = {
747 .instances = 1, 747 .instances = 1,
748}; 748};
749 749
750static const struct platform_device_id musb_dsps_id_table[] __devinitconst = { 750static const struct platform_device_id musb_dsps_id_table[] = {
751 { 751 {
752 .name = "musb-ti81xx", 752 .name = "musb-ti81xx",
753 .driver_data = (kernel_ulong_t) &ti81xx_driver_data, 753 .driver_data = (kernel_ulong_t) &ti81xx_driver_data,
@@ -757,7 +757,7 @@ static const struct platform_device_id musb_dsps_id_table[] __devinitconst = {
757MODULE_DEVICE_TABLE(platform, musb_dsps_id_table); 757MODULE_DEVICE_TABLE(platform, musb_dsps_id_table);
758 758
759#ifdef CONFIG_OF 759#ifdef CONFIG_OF
760static const struct of_device_id musb_dsps_of_match[] __devinitconst = { 760static const struct of_device_id musb_dsps_of_match[] = {
761 { .compatible = "ti,musb-am33xx", 761 { .compatible = "ti,musb-am33xx",
762 .data = (void *) &ti81xx_driver_data, }, 762 .data = (void *) &ti81xx_driver_data, },
763 { }, 763 { },