Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: ca88fc2ef0d7 (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>

authored by

George Cherian and committed by
Felipe Balbi
5d881802 f0cae93f

+1 -1
+1 -1
drivers/usb/musb/musb_core.c
··· 849 849 } 850 850 851 851 /* handle babble condition */ 852 - if (int_usb & MUSB_INTR_BABBLE) 852 + if (int_usb & MUSB_INTR_BABBLE && is_host_active(musb)) 853 853 schedule_work(&musb->recover_work); 854 854 855 855 #if 0