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

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

Merge "mdp3: Increase timeout to determine ppp core hung"

parents 74e1a426 6c5914c6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -272,11 +272,11 @@ int mdp3_ppp_pipe_wait(void)
	int ret = 1;

	/*
	 * wait 40 ms for ppp operation to complete before declaring
	 * wait 200 ms for ppp operation to complete before declaring
	 * the MDP hung
	 */
	ret = wait_for_completion_timeout(
	  &ppp_stat->ppp_comp, msecs_to_jiffies(40));
	  &ppp_stat->ppp_comp, msecs_to_jiffies(200));
	if (!ret)
		pr_err("%s: Timed out waiting for the MDP.\n",
			__func__);