diff options
author | Felipe Balbi <balbi@ti.com> | 2012-06-06 09:18:12 +0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-06-06 11:22:32 +0300 |
commit | 1e2360eadaa33c09bb72afb14f74b6c6ab2aca66 (patch) | |
tree | 458ca142eaa839ac7bb62e38526994ce6eb243ec | |
parent | ea53b8828c50b7a5138a8931c41b2671682c86b5 (diff) |
usb: dwc3: gadget: don't call stop_active_transfers() on disconnect
In case we get disconnected, we will call gadget
driver's disconnect method, which should make
sure to disable all endpoints. At that point
we will call stop_active_transfers() to make
sure we didn't leave any pending request on the
controller.
Tested-by: Pratyush Anand <pratyush.anand@st.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r-- | drivers/usb/dwc3/gadget.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index 0f19978d484..52d0f67e33d 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -1927,7 +1927,6 @@ static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc) reg &= ~DWC3_DCTL_INITU2ENA; dwc3_writel(dwc->regs, DWC3_DCTL, reg); - dwc3_stop_active_transfers(dwc); dwc3_disconnect_gadget(dwc); dwc->start_config_issued = false; |