Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 151375
b: refs/heads/master
c: 9a4b5e3
h: refs/heads/master
i:
  151373: 69a54fb
  151371: 1a7520e
  151367: 0fbd93a
  151359: 648c969
v: v3
  • Loading branch information
Niilo Minkkinen authored and Greg Kroah-Hartman committed Jun 16, 2009
1 parent 29d410a commit c47ec1e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a2bfb4a346d2c2e25f84b35c6044ff53296be1ee
refs/heads/master: 9a4b5e36ce58febdd2039dd4d129ee7edf4f5536
7 changes: 6 additions & 1 deletion trunk/drivers/usb/musb/omap2430.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,12 @@ int __init musb_platform_init(struct musb *musb)
l &= ~AUTOIDLE; /* disable auto idle */
l &= ~NOIDLE; /* remove possible noidle */
l |= SMARTIDLE; /* enable smart idle */
l |= AUTOIDLE; /* enable auto idle */
/*
* MUSB AUTOIDLE don't work in 3430.
* Workaround by Richard Woodruff/TI
*/
if (!cpu_is_omap3430())
l |= AUTOIDLE; /* enable auto idle */
omap_writel(l, OTG_SYSCONFIG);

l = omap_readl(OTG_INTERFSEL);
Expand Down

0 comments on commit c47ec1e

Please sign in to comment.