Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2a97811 authored by Pratham Pratap's avatar Pratham Pratap
Browse files

usb: dwc3: restart usb upon endpoint cmd timeout



For start new configuration command timeout restart
is not happening. Change the logic to restart usb
session except for end transfer command timeout.

Change-Id: I033a62a251daf3929564ab6b48229ad2c01b74db
Signed-off-by: default avatarPratham Pratap <prathampratap@codeaurora.org>
parent 098abe14
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -413,7 +413,7 @@ int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned cmd,
		dwc3_trace(trace_dwc3_gadget, "Command Timed Out");
		dev_err(dwc->dev, "%s command timeout for %s\n",
			dwc3_gadget_ep_cmd_string(cmd), dep->name);
		if (!(cmd & DWC3_DEPCMD_ENDTRANSFER)) {
		if (cmd != DWC3_DEPCMD_ENDTRANSFER) {
			dwc->ep_cmd_timeout_cnt++;
			dwc3_notify_event(dwc,
				DWC3_CONTROLLER_RESTART_USB_SESSION);