diff options
author | Jiri Olsa <jolsa@kernel.org> | 2018-08-04 15:05:02 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-08-08 20:55:45 +0200 |
commit | 7a3e71e0d806070071f53271705b0c511c0359fc (patch) | |
tree | e177ad0a536646ff2969454792b91a5fbcdb2e94 /tools/perf/util/annotate.c | |
parent | perf bpf: Add 'syscall_enter' probe helper for syscall enter tracepoints (diff) | |
download | linux-7a3e71e0d806070071f53271705b0c511c0359fc.tar.xz linux-7a3e71e0d806070071f53271705b0c511c0359fc.zip |
perf annotate: Make symbol__annotate_fprintf2() local
There's no outside user of it.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: https://lkml.kernel.org/r/20180804130521.11408-2-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/annotate.c')
-rw-r--r-- | tools/perf/util/annotate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c index f91775b4bc3c..b6e7d0d56622 100644 --- a/tools/perf/util/annotate.c +++ b/tools/perf/util/annotate.c @@ -2129,7 +2129,7 @@ static void FILE__write_graph(void *fp, int graph) fputs(s, fp); } -int symbol__annotate_fprintf2(struct symbol *sym, FILE *fp) +static int symbol__annotate_fprintf2(struct symbol *sym, FILE *fp) { struct annotation *notes = symbol__annotation(sym); struct annotation_write_ops ops = { |