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

Commit ab013962 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: Fix incorrect PCM value for mult less than 2"

parents 9d40b50f 7441c2d6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -989,7 +989,7 @@ static void dwc3_prepare_one_trb(struct dwc3_ep *dep,
			 */
			if (speed == USB_SPEED_HIGH) {
				struct usb_ep *ep = &dep->endpoint;
				unsigned int mult = ep->mult - 1;
				unsigned int mult = 2;
				unsigned int maxp;

				maxp = usb_endpoint_maxp(ep->desc) & 0x07ff;