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

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

Merge "drm/msm: retry disabling modes on -ERESTARTSYS during lastclose" into dev/msm-4.14-display

parents 0a8ab697 b4ab8764
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -973,7 +973,7 @@ static int msm_disable_all_modes(

	for (i = 0; i < TEARDOWN_DEADLOCK_RETRY_MAX; i++) {
		ret = msm_disable_all_modes_commit(dev, state);
		if (ret != -EDEADLK)
		if (ret != -EDEADLK || ret != -ERESTARTSYS)
			break;
		drm_atomic_state_clear(state);
		drm_modeset_backoff(ctx);