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

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

Merge "usb: gadget: Call function resume irrespective of speed"

parents fd777efd 6ab82057
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -2511,7 +2511,13 @@ void composite_resume(struct usb_gadget *gadget)
				f->func_wakeup_pending = 0;
			}

			if (gadget->speed != USB_SPEED_SUPER && f->resume)
			/*
			 * Call function resume irrespective of the speed.
			 * Individual function needs to retain the USB3 Function
			 * suspend state through out the Device suspend entry
			 * and exit process.
			 */
			if (f->resume)
				f->resume(f);
		}