aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb/musb_dsps.c
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/musb/musb_dsps.c
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/musb/musb_dsps.c')
-rw-r--r--drivers/usb/musb/musb_dsps.c6
1 files changed, 3 insertions, 3 deletions
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 { },