diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-11-30 15:04:05 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-11-30 15:04:05 -0300 |
commit | 606e2c29334556797e1639115bd198aedb331f07 (patch) | |
tree | 2539bac896ade6c25ff2f18aab3e689863a8f8e6 /tools/perf/util/evlist.c | |
parent | 900c8ead5b0b21d73236ffbc4bc2f47a506d8297 (diff) | |
download | linux-stable-606e2c29334556797e1639115bd198aedb331f07.tar.gz linux-stable-606e2c29334556797e1639115bd198aedb331f07.tar.bz2 linux-stable-606e2c29334556797e1639115bd198aedb331f07.zip |
perf evlist: Use the right prefix for alternative 'struct evlist' constructors
perf_evlist__ is for 'struct perf_evlist' methods, in tools/lib/perf/,
go on completing this split.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ian Rogers <irogers@google.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/evlist.c')
-rw-r--r-- | tools/perf/util/evlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c index a11364d94720..70b5b6e506c8 100644 --- a/tools/perf/util/evlist.c +++ b/tools/perf/util/evlist.c @@ -78,7 +78,7 @@ struct evlist *evlist__new(void) return evlist; } -struct evlist *perf_evlist__new_default(void) +struct evlist *evlist__new_default(void) { struct evlist *evlist = evlist__new(); @@ -90,7 +90,7 @@ struct evlist *perf_evlist__new_default(void) return evlist; } -struct evlist *perf_evlist__new_dummy(void) +struct evlist *evlist__new_dummy(void) { struct evlist *evlist = evlist__new(); |