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

Commit d3849ede authored by Chris Wilson's avatar Chris Wilson
Browse files

drm/i915: Remove unused dev_priv->panel_wants_dither



This is now private to the DVO connector, remove it from the main device
private.

Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
parent 780f0ca3
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -328,7 +328,6 @@ typedef struct drm_i915_private {

	/* LVDS info */
	int backlight_level;  /* restore backlight to this value */
	bool panel_wants_dither;
	struct drm_display_mode *panel_fixed_mode;
	struct drm_display_mode *lfp_lvds_vbt_mode; /* if any */
	struct drm_display_mode *sdvo_lvds_vbt_mode; /* if any */
+1 −1
Original line number Diff line number Diff line
@@ -229,7 +229,7 @@ static bool intel_lvds_mode_fixup(struct drm_encoder *encoder,

	/* Make sure pre-965s set dither correctly */
	if (INTEL_INFO(dev)->gen < 4) {
		if (dev_priv->panel_wants_dither || dev_priv->lvds_dither)
		if (dev_priv->lvds_dither)
			pfit_control |= PANEL_8TO6_DITHER_ENABLE;
	}