]> git.karo-electronics.de Git - karo-tx-linux.git/commit
ftrace/trivial: Clean up record mcount to use Linux switch style
authorSteven Rostedt <srostedt@redhat.com>
Wed, 6 Apr 2011 17:32:24 +0000 (13:32 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Tue, 17 May 2011 14:41:33 +0000 (10:41 -0400)
commitd7e8623ae9cf93a9b517336085a86cabb014ea77
tree7f461c6010c3d2f44e2d096128af1988feefe9c4
parentc6fece27dfa46abc8c4b87d94a8c2f8cd6c5d8b1
ftrace/trivial: Clean up record mcount to use Linux switch style

The Linux style for switch statements is:

switch (var) {
case x:
[...]
break;
}

Not:
switch (var) {
case x: {
[...]
} break;

Cc: John Reiser <jreiser@bitwagon.com>
Link: http://lkml.kernel.org/r/20110421023737.523968644@goodmis.org
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
scripts/recordmcount.c