diff mbox series

[2/2] drm/i915/gt: Fixed an typo

Message ID 20240914013146.65757-1-zhanghe9702@163.com (mailing list archive)
State New
Headers show
Series drm/i915/gt: Fixed an typo | expand

Commit Message

Zhang He Sept. 14, 2024, 1:31 a.m. UTC
column header should be GPU, not CPU

---
ChangeLog:
    v1: use correct name as Author and Signer
    v2: change one line in drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c,
        LLC's information header from "Effective CPU freq" to "Effective GPU freq"

Signed-off-by: Zhang He <zhanghe9702@163.com>
---
 drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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 8d08b38874ef..b635aa2820d9 100644
--- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c
+++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c
@@ -431,7 +431,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++) {