From: Bin Liu Date: Tue, 17 Sep 2013 20:33:35 +0000 (-0500) Subject: usb: musb: gadget: fix otg active status flag X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9b0a1de3c85d99d881c86a29b3d52da7b9c7bd61;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git usb: musb: gadget: fix otg active status flag In gadget mode, musb->is_active should be set only when connected to the host. musb_g_reset() already takes care of it. Signed-off-by: Bin Liu Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/musb/musb_gadget.c b/drivers/usb/musb/musb_gadget.c index 58c029f1e74c..b19ed213ab85 100644 --- a/drivers/usb/musb/musb_gadget.c +++ b/drivers/usb/musb/musb_gadget.c @@ -1853,7 +1853,6 @@ static int musb_gadget_start(struct usb_gadget *g, musb->gadget_driver = driver; spin_lock_irqsave(&musb->lock, flags); - musb->is_active = 1; otg_set_peripheral(otg, &musb->g); musb->xceiv->state = OTG_STATE_B_IDLE;