mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 09:40:54 +07:00
usb: fix musb gadget to enable OTG mode conditionally
The musb driver is usable in host, gadget or dual role mode depending on the kernel configuration. However, the musb gadget part of the driver is enabling OTG mode whether the driver is built for dual role or gadget only mode. This induces a bug for gadget only USB device controllers where the kernel tries to use Host Negotiation Protocol with such controllers, which causes a panic. This behaviour is now fixed by enabling OTG mode only when musb driver is built for dual role mode. Signed-off-by: Apelete Seketeli <apelete@seketeli.net> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
b144e4ab1e
commit
fd3923a990
@ -1796,7 +1796,11 @@ int musb_gadget_setup(struct musb *musb)
|
||||
|
||||
/* this "gadget" abstracts/virtualizes the controller */
|
||||
musb->g.name = musb_driver_name;
|
||||
#if IS_ENABLED(CONFIG_USB_MUSB_DUAL_ROLE)
|
||||
musb->g.is_otg = 1;
|
||||
#elif IS_ENABLED(CONFIG_USB_MUSB_GADGET)
|
||||
musb->g.is_otg = 0;
|
||||
#endif
|
||||
|
||||
musb_g_init_endpoints(musb);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user