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 <[email protected]> Signed-off-by: Andrew Kreimer <[email protected]> Cc: Alexander Shishkin <[email protected]> Cc: Ian Rogers <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Kan Liang <[email protected]> Cc: Mark Rutland <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Peter Zijlstra <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
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)