Skip to content

Commit 463c203

Browse files
algonellacmel
authored andcommitted
perf tools: Fix typos Muliplier -> Multiplier
There are some typos in fprintf messages. Fix them via codespell. Reviewed-by: Adrian Hunter <adrian.hunter@intel.com> Signed-off-by: Andrew Kreimer <algonell@gmail.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/20241108134728.25515-1-algonell@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
1 parent a6e8a58 commit 463c203

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tools/perf/util/intel-bts.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ static int intel_bts_synth_events(struct intel_bts *bts,
808808
static const char * const intel_bts_info_fmts[] = {
809809
[INTEL_BTS_PMU_TYPE] = " PMU Type %"PRId64"\n",
810810
[INTEL_BTS_TIME_SHIFT] = " Time Shift %"PRIu64"\n",
811-
[INTEL_BTS_TIME_MULT] = " Time Muliplier %"PRIu64"\n",
811+
[INTEL_BTS_TIME_MULT] = " Time Multiplier %"PRIu64"\n",
812812
[INTEL_BTS_TIME_ZERO] = " Time Zero %"PRIu64"\n",
813813
[INTEL_BTS_CAP_USER_TIME_ZERO] = " Cap Time Zero %"PRId64"\n",
814814
[INTEL_BTS_SNAPSHOT_MODE] = " Snapshot mode %"PRId64"\n",

tools/perf/util/intel-pt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4110,7 +4110,7 @@ static int intel_pt_parse_vm_tm_corr_args(struct intel_pt *pt)
41104110
static const char * const intel_pt_info_fmts[] = {
41114111
[INTEL_PT_PMU_TYPE] = " PMU Type %"PRId64"\n",
41124112
[INTEL_PT_TIME_SHIFT] = " Time Shift %"PRIu64"\n",
4113-
[INTEL_PT_TIME_MULT] = " Time Muliplier %"PRIu64"\n",
4113+
[INTEL_PT_TIME_MULT] = " Time Multiplier %"PRIu64"\n",
41144114
[INTEL_PT_TIME_ZERO] = " Time Zero %"PRIu64"\n",
41154115
[INTEL_PT_CAP_USER_TIME_ZERO] = " Cap Time Zero %"PRId64"\n",
41164116
[INTEL_PT_TSC_BIT] = " TSC bit %#"PRIx64"\n",

tools/perf/util/tsc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ size_t perf_event__fprintf_time_conv(union perf_event *event, FILE *fp)
119119
size_t ret;
120120

121121
ret = fprintf(fp, "\n... Time Shift %" PRI_lu64 "\n", tc->time_shift);
122-
ret += fprintf(fp, "... Time Muliplier %" PRI_lu64 "\n", tc->time_mult);
122+
ret += fprintf(fp, "... Time Multiplier %" PRI_lu64 "\n", tc->time_mult);
123123
ret += fprintf(fp, "... Time Zero %" PRI_lu64 "\n", tc->time_zero);
124124

125125
/*

0 commit comments

Comments
 (0)