diff options
author | Jani Nikula <jani.nikula@intel.com> | 2016-01-05 10:08:17 -0500 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2016-01-11 12:20:59 -0500 |
commit | bc95ce7f397232f8d0cacec94aa426b90e87d024 (patch) | |
tree | eed92f2bbe334b63df61e1112141394483255b2b | |
parent | c67fed8534139fcf5f0184cd4dea062f631d0d6f (diff) |
drm/i915/dsi: add debug printing of the new sequence block names
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1452006497-28517-1-git-send-email-jani.nikula@intel.com
-rw-r--r-- | drivers/gpu/drm/i915/intel_dsi_panel_vbt.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_dsi_panel_vbt.c b/drivers/gpu/drm/i915/intel_dsi_panel_vbt.c index 66d0b73725df..1d43e6f37fc1 100644 --- a/drivers/gpu/drm/i915/intel_dsi_panel_vbt.c +++ b/drivers/gpu/drm/i915/intel_dsi_panel_vbt.c | |||
@@ -255,6 +255,12 @@ static const char * const seq_name[] = { | |||
255 | [MIPI_SEQ_DISPLAY_ON] = "MIPI_SEQ_DISPLAY_ON", | 255 | [MIPI_SEQ_DISPLAY_ON] = "MIPI_SEQ_DISPLAY_ON", |
256 | [MIPI_SEQ_DISPLAY_OFF] = "MIPI_SEQ_DISPLAY_OFF", | 256 | [MIPI_SEQ_DISPLAY_OFF] = "MIPI_SEQ_DISPLAY_OFF", |
257 | [MIPI_SEQ_DEASSERT_RESET] = "MIPI_SEQ_DEASSERT_RESET", | 257 | [MIPI_SEQ_DEASSERT_RESET] = "MIPI_SEQ_DEASSERT_RESET", |
258 | [MIPI_SEQ_BACKLIGHT_ON] = "MIPI_SEQ_BACKLIGHT_ON", | ||
259 | [MIPI_SEQ_BACKLIGHT_OFF] = "MIPI_SEQ_BACKLIGHT_OFF", | ||
260 | [MIPI_SEQ_TEAR_ON] = "MIPI_SEQ_TEAR_ON", | ||
261 | [MIPI_SEQ_TEAR_OFF] = "MIPI_SEQ_TEAR_OFF", | ||
262 | [MIPI_SEQ_POWER_ON] = "MIPI_SEQ_POWER_ON", | ||
263 | [MIPI_SEQ_POWER_OFF] = "MIPI_SEQ_POWER_OFF", | ||
258 | }; | 264 | }; |
259 | 265 | ||
260 | static const char *sequence_name(enum mipi_seq seq_id) | 266 | static const char *sequence_name(enum mipi_seq seq_id) |