Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Andrew Kreimer and committed by
Arnaldo Carvalho de Melo
463c2031 a6e8a58d

+3 -3
+1 -1
tools/perf/util/intel-bts.c
··· 808 808 static const char * const intel_bts_info_fmts[] = { 809 809 [INTEL_BTS_PMU_TYPE] = " PMU Type %"PRId64"\n", 810 810 [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", 812 812 [INTEL_BTS_TIME_ZERO] = " Time Zero %"PRIu64"\n", 813 813 [INTEL_BTS_CAP_USER_TIME_ZERO] = " Cap Time Zero %"PRId64"\n", 814 814 [INTEL_BTS_SNAPSHOT_MODE] = " Snapshot mode %"PRId64"\n",
+1 -1
tools/perf/util/intel-pt.c
··· 4110 4110 static const char * const intel_pt_info_fmts[] = { 4111 4111 [INTEL_PT_PMU_TYPE] = " PMU Type %"PRId64"\n", 4112 4112 [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", 4114 4114 [INTEL_PT_TIME_ZERO] = " Time Zero %"PRIu64"\n", 4115 4115 [INTEL_PT_CAP_USER_TIME_ZERO] = " Cap Time Zero %"PRId64"\n", 4116 4116 [INTEL_PT_TSC_BIT] = " TSC bit %#"PRIx64"\n",
+1 -1
tools/perf/util/tsc.c
··· 119 119 size_t ret; 120 120 121 121 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); 123 123 ret += fprintf(fp, "... Time Zero %" PRI_lu64 "\n", tc->time_zero); 124 124 125 125 /*