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

Commit 6251ec0a authored by Zhenyu Wang's avatar Zhenyu Wang Committed by Eric Anholt
Browse files

drm/i915: fix eDP pipe mask



eDP could be on pipe A or B.

Signed-off-by: default avatarZhenyu Wang <zhenyuw@linux.intel.com>
Signed-off-by: default avatarEric Anholt <eric@anholt.net>
parent 885a5fb5
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -1331,10 +1331,9 @@ intel_dp_init(struct drm_device *dev, int output_reg)
	else if (output_reg == DP_D || output_reg == PCH_DP_D)
		intel_output->clone_mask = (1 << INTEL_DP_D_CLONE_BIT);

	if (IS_eDP(intel_output)) {
		intel_output->crtc_mask = (1 << 1);
	if (IS_eDP(intel_output))
		intel_output->clone_mask = (1 << INTEL_EDP_CLONE_BIT);
	} else

	intel_output->crtc_mask = (1 << 0) | (1 << 1);
	connector->interlace_allowed = true;
	connector->doublescan_allowed = 0;