aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorZhang He <zhanghe9702@163.com>2024-09-13 22:07:21 +0800
committerAndi Shyti <andi.shyti@linux.intel.com>2024-09-16 10:27:19 +0200
commitaa944281bd00647dbef2f1b5e8a69e9ceebbc263 (patch)
treeeb8ff25821582862c8199c87387936576bc96819
parentdrm/i915/pmu: Use event_to_pmu() (diff)
downloadwireguard-linux-aa944281bd00647dbef2f1b5e8a69e9ceebbc263.tar.xz
wireguard-linux-aa944281bd00647dbef2f1b5e8a69e9ceebbc263.zip
drm/i915/gt: Fixed "CPU" -> "GPU" typo
Column header should be GPU, not CPU Signed-off-by: Zhang He <zhanghe9702@163.com> Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240913140721.31165-1-zhanghe9702@163.com
-rw-r--r--drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c
index 0437fd8217e0..12007862c9c6 100644
--- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c
+++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c
@@ -432,7 +432,7 @@ static int llc_show(struct seq_file *m, void *data)
max_gpu_freq /= GEN9_FREQ_SCALER;
}
- seq_puts(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\tEffective Ring freq (MHz)\n");
+ seq_puts(m, "GPU freq (MHz)\tEffective GPU freq (MHz)\tEffective Ring freq (MHz)\n");
wakeref = intel_runtime_pm_get(gt->uncore->rpm);
for (gpu_freq = min_gpu_freq; gpu_freq <= max_gpu_freq; gpu_freq++) {