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

Commit f7d3c970 authored by Jani Nikula's avatar Jani Nikula
Browse files

drm/i915/dsi: don't debug log "missing" sequences



This is not interesting. They are not "missing", they are just not part
of the VBT sequences for the panel.

Reviewed-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/54909b29802398d23f1d26f6589671e69688f904.1474286487.git.jani.nikula@intel.com
parent 6e05f3d3
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -385,11 +385,8 @@ static void generic_exec_sequence(struct drm_panel *panel, enum mipi_seq seq_id)
		return;

	data = dev_priv->vbt.dsi.sequence[seq_id];
	if (!data) {
		DRM_DEBUG_KMS("MIPI sequence %d - %s not available\n",
			      seq_id, sequence_name(seq_id));
	if (!data)
		return;
	}

	WARN_ON(*data != seq_id);