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

Commit 5da92eef authored by Daniel Vetter's avatar Daniel Vetter
Browse files

drm/i915/tv: De-magic device check



We only support TV-out on gen3/4 mobile platforms, and i915gm is the
only one that matches.

Reviewed-by: default avatarImre Deak <imre.deak@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent b8866ef8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1090,7 +1090,7 @@ static void intel_tv_mode_set(struct intel_encoder *encoder)
		tv_mode->dda3_inc << TV_SCDDA3_INC_SHIFT;

	/* Enable two fixes for the chips that need them. */
	if (dev->pdev->device < 0x2772)
	if (IS_I915GM(dev))
		tv_ctl |= TV_ENC_C0_FIX | TV_ENC_SDP_FIX;

	set_tv_mode_timings(dev_priv, tv_mode, burst_ena);