mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
usb: musb: dsps: run the timer only on OTG systems
I introduced this check here because it looked wrong in HOST only configurions. The timer would remove that session bit and will never come back and so there would not be another session. Now that I played with OTG for a while I belive this workaround is only required for the OTG mode because we have to end the session and then we have to try to start manually. Therefore, this patch limits this timer to the OTG only port mode so we don't need to poll around in device only mode. Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
0f901c9801
commit
24616eb66a
@ -138,7 +138,7 @@ static void dsps_musb_try_idle(struct musb *musb, unsigned long timeout)
|
||||
glue->last_timer = jiffies;
|
||||
return;
|
||||
}
|
||||
if (musb->port_mode == MUSB_PORT_MODE_HOST)
|
||||
if (musb->port_mode != MUSB_PORT_MODE_DUAL_ROLE)
|
||||
return;
|
||||
|
||||
if (!musb->g.dev.driver)
|
||||
|
Loading…
Reference in New Issue
Block a user