aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2025-06-30 12:51:28 +0000
committerNamhyung Kim <[email protected]>2025-06-30 16:10:50 +0000
commitbb986e4720009da4221aeeeed7dec3f56d96502c (patch)
tree8c5ed9810726f24d39dc2bf2d066b7fb18e0ac9c
parentperf test: perf header test fails on s390 (diff)
downloadkernel-bb986e4720009da4221aeeeed7dec3f56d96502c.tar.gz
kernel-bb986e4720009da4221aeeeed7dec3f56d96502c.zip
perf drm_pmu: Fix spelling mistake "bufers" -> "buffers"
There are spelling mistakes in some literal strings. Fix these. Fixes: 28917cb17f9d ("perf drm_pmu: Add a tool like PMU to expose DRM information") Signed-off-by: Colin Ian King <[email protected]> Reviewed-by: Ian Rogers <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Namhyung Kim <[email protected]>
-rw-r--r--tools/perf/util/drm_pmu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/util/drm_pmu.c b/tools/perf/util/drm_pmu.c
index 17385a10005b..988890f37ba7 100644
--- a/tools/perf/util/drm_pmu.c
+++ b/tools/perf/util/drm_pmu.c
@@ -210,17 +210,17 @@ static int read_drm_pmus_cb(void *args, int fdinfo_dir_fd, const char *fd_name)
}
if (starts_with(line, "drm-purgeable-")) {
add_event(&events, &num_events, line, DRM_PMU_UNIT_BYTES,
- "Size of resident and purgeable memory bufers");
+ "Size of resident and purgeable memory buffers");
continue;
}
if (starts_with(line, "drm-resident-")) {
add_event(&events, &num_events, line, DRM_PMU_UNIT_BYTES,
- "Size of resident memory bufers");
+ "Size of resident memory buffers");
continue;
}
if (starts_with(line, "drm-shared-")) {
add_event(&events, &num_events, line, DRM_PMU_UNIT_BYTES,
- "Size of shared memory bufers");
+ "Size of shared memory buffers");
continue;
}
if (starts_with(line, "drm-total-cycles-")) {