diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2025-05-07 09:24:21 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2025-05-09 14:47:19 -0300 |
commit | 4f1a19b8bc1485d3e8fb57edc1650e50f61f931e (patch) | |
tree | 73d495d95dd707aa14bc4a540a1306e81352841d | |
parent | c60b7d6f50ae25a91a6998a8118bba325a382d28 (diff) |
perf test amd ibs: Fix spelling mistake "Asssuming" -> "Assuming"
There is a spelling mistake ina pr_debug message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/20250507082421.188848-1-colin.i.king@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/arch/x86/tests/amd-ibs-period.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/arch/x86/tests/amd-ibs-period.c b/tools/perf/arch/x86/tests/amd-ibs-period.c index a198434da9b5..7c77d86f369d 100644 --- a/tools/perf/arch/x86/tests/amd-ibs-period.c +++ b/tools/perf/arch/x86/tests/amd-ibs-period.c @@ -896,7 +896,7 @@ static unsigned int get_perf_event_max_sample_rate(void) fp = fopen("/proc/sys/kernel/perf_event_max_sample_rate", "r"); if (!fp) { - pr_debug("Can't open perf_event_max_sample_rate. Asssuming %d\n", + pr_debug("Can't open perf_event_max_sample_rate. Assuming %d\n", max_sample_rate); goto out; } |