summaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb
diff options
context:
space:
mode:
authorSebastian Andrzej Siewior2013-07-26 11:11:37 +0200
committerFelipe Balbi2013-07-29 12:58:28 +0200
commitfa7b4ca50f03b6e71665ccef66ca000311353fc8 (patch)
tree4b1974542c03075b8bac9c31b68996b4ffff7ee9 /drivers/usb/musb
parentusb: phy: tegra: Use DT helpers for dr_mode (diff)
downloadkernel-qcow2-linux-fa7b4ca50f03b6e71665ccef66ca000311353fc8.tar.gz
kernel-qcow2-linux-fa7b4ca50f03b6e71665ccef66ca000311353fc8.tar.xz
kernel-qcow2-linux-fa7b4ca50f03b6e71665ccef66ca000311353fc8.zip
usb: musb: dsps: rename ti81xx_driver_data to am33xx_driver_data
The ti81xx platform is not fully supported right now. This patch renames the date structure to a am33xx prefix which is actually used. Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb')
-rw-r--r--drivers/usb/musb/musb_dsps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c
index 55f5ff9351d6..aba2dc58938d 100644
--- a/drivers/usb/musb/musb_dsps.c
+++ b/drivers/usb/musb/musb_dsps.c
@@ -720,7 +720,7 @@ static int dsps_resume(struct device *dev)
static SIMPLE_DEV_PM_OPS(dsps_pm_ops, dsps_suspend, dsps_resume);
-static const struct dsps_musb_wrapper ti81xx_driver_data = {
+static const struct dsps_musb_wrapper am33xx_driver_data = {
.revision = 0x00,
.control = 0x14,
.status = 0x18,
@@ -753,7 +753,7 @@ static const struct dsps_musb_wrapper ti81xx_driver_data = {
static const struct of_device_id musb_dsps_of_match[] = {
{ .compatible = "ti,musb-am33xx",
- .data = (void *) &ti81xx_driver_data, },
+ .data = (void *) &am33xx_driver_data, },
{ },
};
MODULE_DEVICE_TABLE(of, musb_dsps_of_match);