mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-29 17:25:38 +00:00
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>
This commit is contained in:
parent
a6e8a58de6
commit
463c203165
@ -808,7 +808,7 @@ static int intel_bts_synth_events(struct intel_bts *bts,
|
||||
static const char * const intel_bts_info_fmts[] = {
|
||||
[INTEL_BTS_PMU_TYPE] = " PMU Type %"PRId64"\n",
|
||||
[INTEL_BTS_TIME_SHIFT] = " Time Shift %"PRIu64"\n",
|
||||
[INTEL_BTS_TIME_MULT] = " Time Muliplier %"PRIu64"\n",
|
||||
[INTEL_BTS_TIME_MULT] = " Time Multiplier %"PRIu64"\n",
|
||||
[INTEL_BTS_TIME_ZERO] = " Time Zero %"PRIu64"\n",
|
||||
[INTEL_BTS_CAP_USER_TIME_ZERO] = " Cap Time Zero %"PRId64"\n",
|
||||
[INTEL_BTS_SNAPSHOT_MODE] = " Snapshot mode %"PRId64"\n",
|
||||
|
@ -4110,7 +4110,7 @@ static int intel_pt_parse_vm_tm_corr_args(struct intel_pt *pt)
|
||||
static const char * const intel_pt_info_fmts[] = {
|
||||
[INTEL_PT_PMU_TYPE] = " PMU Type %"PRId64"\n",
|
||||
[INTEL_PT_TIME_SHIFT] = " Time Shift %"PRIu64"\n",
|
||||
[INTEL_PT_TIME_MULT] = " Time Muliplier %"PRIu64"\n",
|
||||
[INTEL_PT_TIME_MULT] = " Time Multiplier %"PRIu64"\n",
|
||||
[INTEL_PT_TIME_ZERO] = " Time Zero %"PRIu64"\n",
|
||||
[INTEL_PT_CAP_USER_TIME_ZERO] = " Cap Time Zero %"PRId64"\n",
|
||||
[INTEL_PT_TSC_BIT] = " TSC bit %#"PRIx64"\n",
|
||||
|
@ -119,7 +119,7 @@ size_t perf_event__fprintf_time_conv(union perf_event *event, FILE *fp)
|
||||
size_t ret;
|
||||
|
||||
ret = fprintf(fp, "\n... Time Shift %" PRI_lu64 "\n", tc->time_shift);
|
||||
ret += fprintf(fp, "... Time Muliplier %" PRI_lu64 "\n", tc->time_mult);
|
||||
ret += fprintf(fp, "... Time Multiplier %" PRI_lu64 "\n", tc->time_mult);
|
||||
ret += fprintf(fp, "... Time Zero %" PRI_lu64 "\n", tc->time_zero);
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user