diff options
author | Wenji Huang <wenji.huang@oracle.com> | 2010-01-13 04:01:38 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-01-13 04:53:51 -0500 |
commit | ff314d3903c2843de65c2148f66f277f2440ed26 (patch) | |
tree | bfe89a352563e1d67b82de9f933ca3e829eca5b0 /tools/perf | |
parent | 8381f65d097dad90416808314737dd7d3ae38ea9 (diff) |
perf: Make cmd_to_page() function more compact
Remove branch for is_perf_command.
Signed-off-by: Wenji Huang <wenji.huang@oracle.com>
Cc: fweisbec@gmail.com
Cc: jkacur@redhat.com
Cc: acme@redhat.com
LKML-Reference: <1263373298-13282-1-git-send-email-wenji.huang@oracle.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/builtin-help.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/perf/builtin-help.c b/tools/perf/builtin-help.c index e427d6965e0c..215b584007b1 100644 --- a/tools/perf/builtin-help.c +++ b/tools/perf/builtin-help.c | |||
@@ -313,8 +313,6 @@ static const char *cmd_to_page(const char *perf_cmd) | |||
313 | return "perf"; | 313 | return "perf"; |
314 | else if (!prefixcmp(perf_cmd, "perf")) | 314 | else if (!prefixcmp(perf_cmd, "perf")) |
315 | return perf_cmd; | 315 | return perf_cmd; |
316 | else if (is_perf_command(perf_cmd)) | ||
317 | return prepend("perf-", perf_cmd); | ||
318 | else | 316 | else |
319 | return prepend("perf-", perf_cmd); | 317 | return prepend("perf-", perf_cmd); |
320 | } | 318 | } |