summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2022-10-03 14:32:45 +0300
committerVille Syrjälä <ville.syrjala@linux.intel.com>2022-10-03 18:49:52 +0300
commit2e25c1fba7145f610c7e4744f3ed99ffff559152 (patch)
tree3f4a76de535e567e94debb0d30cd3382677ffec5
parent61564e6c5a4addf170b75415c4ac86282784a072 (diff)
drm/i915: Make the DRRS debugfs contents more consistent
The stuff in the DRRS debugs is currently a hodgepode mix of camelcase, lowercase, spaces, undescores, you name it. Convert over to a reasonably common style. Also move the busy bits thing to be the last sine it's generally the least interesting thing in there. Reviewed-by: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20221003113249.16213-3-ville.syrjala@linux.intel.com
-rw-r--r--drivers/gpu/drm/i915/display/intel_drrs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_drrs.c b/drivers/gpu/drm/i915/display/intel_drrs.c
index 030a3566538a..3639d8aa71c9 100644
--- a/drivers/gpu/drm/i915/display/intel_drrs.c
+++ b/drivers/gpu/drm/i915/display/intel_drrs.c
@@ -325,19 +325,19 @@ static int intel_drrs_debugfs_status_show(struct seq_file *m, void *unused)
mutex_lock(&crtc->drrs.mutex);
/* DRRS Supported */
- seq_printf(m, "\tDRRS Enabled: %s\n",
+ seq_printf(m, "\tDRRS enabled: %s\n",
str_yes_no(crtc_state->has_drrs));
- seq_printf(m, "\tDRRS Active: %s\n",
+ seq_printf(m, "\tDRRS active: %s\n",
str_yes_no(intel_drrs_is_active(crtc)));
- seq_printf(m, "\tBusy_frontbuffer_bits: 0x%X\n",
- crtc->drrs.busy_frontbuffer_bits);
-
seq_printf(m, "\tDRRS refresh rate: %s\n",
crtc->drrs.refresh_rate == DRRS_REFRESH_RATE_LOW ?
"low" : "high");
+ seq_printf(m, "\tDRRS busy frontbuffer bits: 0x%X\n",
+ crtc->drrs.busy_frontbuffer_bits);
+
mutex_unlock(&crtc->drrs.mutex);
}