aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung.kim@lge.com>2012-02-23 03:46:21 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-03-05 08:15:50 -0500
commitef7c537221160c285704997a913fb66ddc1fe6bc (patch)
tree8b8417188a99b4c6bb954fedb0acbc2ef16c6995 /tools/perf/util
parent58e817d997d162682717dcaae39393dcadf5f296 (diff)
perf annotate: Handle lower case key code in annotate_browser__run()
Accepting upper case character only is unconvenient since it requires SHIFT key too. Why not change to it accept a simple key stroke? Cc: Ingo Molnar <mingo@elte.hu> Cc: Namhyung Kim <namhyung@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1329986784-4916-3-git-send-email-namhyung.kim@lge.com Signed-off-by: Namhyung Kim <namhyung.kim@lge.com> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util')
-rw-r--r--tools/perf/util/ui/browsers/annotate.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/util/ui/browsers/annotate.c b/tools/perf/util/ui/browsers/annotate.c
index 76caae95df39..374d3bc570b2 100644
--- a/tools/perf/util/ui/browsers/annotate.c
+++ b/tools/perf/util/ui/browsers/annotate.c
@@ -287,9 +287,11 @@ static int annotate_browser__run(struct annotate_browser *self, int evidx,
287 nd = self->curr_hot; 287 nd = self->curr_hot;
288 break; 288 break;
289 case 'H': 289 case 'H':
290 case 'h':
290 nd = self->curr_hot; 291 nd = self->curr_hot;
291 break; 292 break;
292 case 'S': 293 case 'S':
294 case 's':
293 if (annotate_browser__toggle_source(self)) 295 if (annotate_browser__toggle_source(self))
294 ui_helpline__puts(help); 296 ui_helpline__puts(help);
295 continue; 297 continue;