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

Commit 97e46388 authored by John Youn's avatar John Youn Committed by Felipe Balbi
Browse files

usb: dwc2: Reduce delay when forcing mode in reset



The delay for force mode is only 25ms according to the databook.

Signed-off-by: default avatarJohn Youn <johnyoun@synopsys.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 241729ba
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -602,7 +602,7 @@ static void dwc2_clear_force_mode(struct dwc2_hsotg *hsotg)
	 * NOTE: This long sleep is _very_ important, otherwise the core will
	 * not stay in host mode after a connector ID change!
	 */
	usleep_range(150000, 160000);
	msleep(25);
}

/*