aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung@kernel.org>2012-11-09 12:27:13 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-11-09 14:22:46 -0500
commit2ba34aaa6db8b61cf1fa14132f885ba6bc7c9ae0 (patch)
tree82ecdd25250d9178ed58df3adfe527745e82e331 /tools
parent12f8f74b2a4d26c4facfa7ef99487cf0930f6ef7 (diff)
perf annotate: Whitespace fixups
Some lines are indented by whitespace characters rather than tabs. Fix them. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Cc: Andi Kleen <ak@linux.intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/1352482044-3443-3-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/annotate.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c
index b14d4df9f149..435bf6d1a775 100644
--- a/tools/perf/util/annotate.c
+++ b/tools/perf/util/annotate.c
@@ -171,15 +171,15 @@ static int lock__parse(struct ins_operands *ops)
171 if (disasm_line__parse(ops->raw, &name, &ops->locked.ops->raw) < 0) 171 if (disasm_line__parse(ops->raw, &name, &ops->locked.ops->raw) < 0)
172 goto out_free_ops; 172 goto out_free_ops;
173 173
174 ops->locked.ins = ins__find(name); 174 ops->locked.ins = ins__find(name);
175 if (ops->locked.ins == NULL) 175 if (ops->locked.ins == NULL)
176 goto out_free_ops; 176 goto out_free_ops;
177 177
178 if (!ops->locked.ins->ops) 178 if (!ops->locked.ins->ops)
179 return 0; 179 return 0;
180 180
181 if (ops->locked.ins->ops->parse) 181 if (ops->locked.ins->ops->parse)
182 ops->locked.ins->ops->parse(ops->locked.ops); 182 ops->locked.ins->ops->parse(ops->locked.ops);
183 183
184 return 0; 184 return 0;
185 185