perf drm_pmu: Fix spelling mistake "bufers" -> "buffers"
authorColin Ian King <colin.i.king@gmail.com>
Mon, 30 Jun 2025 12:51:28 +0000 (13:51 +0100)
committerNamhyung Kim <namhyung@kernel.org>
Mon, 30 Jun 2025 16:10:50 +0000 (09:10 -0700)
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 <colin.i.king@gmail.com>
Reviewed-by: Ian Rogers <irogers@google.com>
Link: https://lore.kernel.org/r/20250630125128.562895-1-colin.i.king@gmail.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
tools/perf/util/drm_pmu.c

index 17385a10005bafdf05fd2170366b24288a305d43..988890f37ba7a4587c40cd0427c83912aa1de5a3 100644 (file)
@@ -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-")) {