Commit bb986e47 authored by Colin Ian King's avatar Colin Ian King Committed by Namhyung Kim
Browse files

perf drm_pmu: Fix spelling mistake "bufers" -> "buffers"



There are spelling mistakes in some literal strings. Fix these.

Fixes: 28917cb1 ("perf drm_pmu: Add a tool like PMU to expose DRM information")
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Reviewed-by: default avatarIan Rogers <irogers@google.com>
Link: https://lore.kernel.org/r/20250630125128.562895-1-colin.i.king@gmail.com


Signed-off-by: default avatarNamhyung Kim <namhyung@kernel.org>
parent 844f962c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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-")) {