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

Commit 59169e1b 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/sde: Use primary display for splash"

parents 17019f7f 3b6b3260
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -2664,6 +2664,14 @@ static int sde_kms_cont_splash_config(struct msm_kms *kms)
		SDE_DEBUG("info.is_connected = %s, info.is_primary = %s\n",
			((info.is_connected) ? "true" : "false"),
			((info.is_primary) ? "true" : "false"));

		/**
		 * Since we are supporting one DSI for splash, use the display
		 * which is marked as primary.
		 */
		if (!info.is_primary)
			continue;
		else
			break;
	}