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

Commit 3973dbc3 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "usb: dwc3: gadget: Protect against ep disabling during completion"

parents 60dc7d87 b7ed96c4
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -2201,6 +2201,13 @@ static int dwc3_cleanup_done_reqs(struct dwc3 *dwc, struct dwc3_ep *dep,
		}
		dwc3_gadget_giveback(dep, req, status);

		/* EP possibly disabled during giveback? */
		if (!(dep->flags & DWC3_EP_ENABLED)) {
			dev_dbg(dwc->dev, "%s disabled while handling ep event\n",
					dep->name);
			return 0;
		}

		if (ret)
			break;
	} while (1);