diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-04-29 21:09:12 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-05-05 21:35:30 +0200 |
commit | 347c751a64af1ae10927d3e4e59171a72a062b3c (patch) | |
tree | e0508b3234a0ca8407177b39eda8085b35568d64 /tools/perf/util/hist.c | |
parent | perf evsel: Rename *perf_evsel__*name() to *evsel__*name() (diff) | |
download | linux-347c751a64af1ae10927d3e4e59171a72a062b3c.tar.xz linux-347c751a64af1ae10927d3e4e59171a72a062b3c.zip |
perf evsel: Rename perf_evsel__group_desc() to evsel__group_desc()
As it is a 'struct evsel' method, not part of tools/lib/perf/, aka
libperf, to whom the perf_ prefix belongs.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/hist.c')
-rw-r--r-- | tools/perf/util/hist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c index fa77574f12ca..bce49ae97532 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c @@ -2698,7 +2698,7 @@ int __hists__scnprintf_title(struct hists *hists, char *bf, size_t size, bool sh if (perf_evsel__is_group_event(evsel)) { struct evsel *pos; - perf_evsel__group_desc(evsel, buf, buflen); + evsel__group_desc(evsel, buf, buflen); ev_name = buf; for_each_group_member(pos, evsel) { |