From 219cee8fe7ae5488a3781184ed56d7efaced88a6 Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Tue, 28 Jan 2020 17:19:42 +0200 Subject: [PATCH] drm/i915/debugfs: remove VBT data about DRRS MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The debugfs is not the place to print duplicated info about VBT data. Reviewed-by: Ville Syrjälä Signed-off-by: Jani Nikula Link: https://patchwork.freedesktop.org/patch/msgid/20200128151942.2590-1-jani.nikula@intel.com --- drivers/gpu/drm/i915/i915_debugfs.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index 27cb4e219322..2d76138c349f 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -2921,16 +2921,7 @@ static void drrs_status_per_crtc(struct seq_file *m, } drm_connector_list_iter_end(&conn_iter); - if (dev_priv->vbt.drrs_type == STATIC_DRRS_SUPPORT) - seq_puts(m, "\tVBT: DRRS_type: Static"); - else if (dev_priv->vbt.drrs_type == SEAMLESS_DRRS_SUPPORT) - seq_puts(m, "\tVBT: DRRS_type: Seamless"); - else if (dev_priv->vbt.drrs_type == DRRS_NOT_SUPPORTED) - seq_puts(m, "\tVBT: DRRS_type: None"); - else - seq_puts(m, "\tVBT: DRRS_type: FIXME: Unrecognized Value"); - - seq_puts(m, "\n\n"); + seq_puts(m, "\n"); if (to_intel_crtc_state(intel_crtc->base.state)->has_drrs) { struct intel_panel *panel; -- 2.11.0