aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Tang <dt.tangr@gmail.com>2015-02-10 23:44:57 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-03-18 11:19:11 -0400
commit89200448a01d9d07a1ee5cc42e8b847f86cdaf7c (patch)
tree817a49eb5f248f4ed580ddc5dd1f94be63d3ed6b
parent06bdfcdb139e95edbebeb719200de5d535afe526 (diff)
Chipidea: TI-NSPIRE USB OTG hardware does not support high speed and must connect at full speed
Signed-off-by: Daniel Tang <dt.tangr@gmail.com> Signed-off-by: Peter Chen <peter.chen@freescale.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/chipidea/ci_hdrc_zevio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/chipidea/ci_hdrc_zevio.c b/drivers/usb/chipidea/ci_hdrc_zevio.c
index d976fc1db73a..1264de505527 100644
--- a/drivers/usb/chipidea/ci_hdrc_zevio.c
+++ b/drivers/usb/chipidea/ci_hdrc_zevio.c
@@ -18,7 +18,7 @@
18 18
19static struct ci_hdrc_platform_data ci_hdrc_zevio_platdata = { 19static struct ci_hdrc_platform_data ci_hdrc_zevio_platdata = {
20 .name = "ci_hdrc_zevio", 20 .name = "ci_hdrc_zevio",
21 .flags = CI_HDRC_REGS_SHARED, 21 .flags = CI_HDRC_REGS_SHARED | CI_HDRC_FORCE_FULLSPEED,
22 .capoffset = DEF_CAPOFFSET, 22 .capoffset = DEF_CAPOFFSET,
23}; 23};
24 24