usb: musb: core: Handle Babble condition only in HOST mode
BABBLE and RESET share the same interrupt. The interrupt
is considered to be RESET if MUSB is in peripheral mode and
as a BABBLE if MUSB is in HOST mode.
Handle babble condition iff MUSB is in HOST mode.
Fixes: ca88fc2ef0
(usb: musb: add a work_struct to recover from babble errors)
Tested-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: George Cherian <george.cherian@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
f0cae93f3f
commit
5d881802c4
|
@ -849,7 +849,7 @@ b_host:
|
|||
}
|
||||
|
||||
/* handle babble condition */
|
||||
if (int_usb & MUSB_INTR_BABBLE)
|
||||
if (int_usb & MUSB_INTR_BABBLE && is_host_active(musb))
|
||||
schedule_work(&musb->recover_work);
|
||||
|
||||
#if 0
|
||||
|
|
Loading…
Reference in New Issue