diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:24:34 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 13:27:16 -0800 |
commit | d3608b6dafc570bb671c3338288eb2523f8cd52a (patch) | |
tree | 53f43d90a69c17a873c5d50d15d30a9595aa06b1 /drivers/usb/host/ehci-spear.c | |
parent | 41ac7b3ab7fe1d6175839947a877fdf95cbd2211 (diff) | |
download | op-kernel-dev-d3608b6dafc570bb671c3338288eb2523f8cd52a.zip op-kernel-dev-d3608b6dafc570bb671c3338288eb2523f8cd52a.tar.gz |
usb: remove use of __devinitdata
CONFIG_HOTPLUG is going away as an option so __devinitdata is no
longer needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Acked-by: Felipe Balbi <balbi@ti.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-spear.c')
-rw-r--r-- | drivers/usb/host/ehci-spear.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-spear.c b/drivers/usb/host/ehci-spear.c index 3fadff8..466c1bb 100644 --- a/drivers/usb/host/ehci-spear.c +++ b/drivers/usb/host/ehci-spear.c @@ -199,7 +199,7 @@ static int spear_ehci_hcd_drv_remove(struct platform_device *pdev) return 0; } -static struct of_device_id spear_ehci_id_table[] __devinitdata = { +static struct of_device_id spear_ehci_id_table[] = { { .compatible = "st,spear600-ehci", }, { }, }; |