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

Commit a66f0779 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/dp: return number of displays as 0 if dp node is disabled" into dev/msm-4.14-display

parents 3ab7f432 3905746c
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -2114,6 +2114,9 @@ int dp_display_get_displays(void **displays, int count)


int dp_display_get_num_of_displays(void)
int dp_display_get_num_of_displays(void)
{
{
	if (!g_dp_display)
		return 0;

	return 1;
	return 1;
}
}