]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/i915/gt: Fixed "CPU" -> "GPU" typo
authorZhang He <zhanghe9702@163.com>
Fri, 13 Sep 2024 14:07:21 +0000 (22:07 +0800)
committerAndi Shyti <andi.shyti@linux.intel.com>
Mon, 16 Sep 2024 08:27:19 +0000 (10:27 +0200)
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
drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c

index 0437fd8217e0024fd7848d653b68599718e8bc99..12007862c9c67a54b9426b476ad105a072b1c993 100644 (file)
@@ -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++) {