diff options
author | Anton Vorontsov <anton.vorontsov@linaro.org> | 2014-11-06 09:36:44 -0500 |
---|---|---|
committer | Jason Wessel <jason.wessel@windriver.com> | 2014-11-11 10:31:52 -0500 |
commit | e8ab24d9b0173ada3eeed31d7d7f982228efc2c5 (patch) | |
tree | 250188c433b4451cc90c905d738c161651e7552d /kernel/trace | |
parent | 04bb171e7aa99dee0c92e772e4f66f8d5c1b4081 (diff) |
kdb: Remove KDB_REPEAT_NONE flag
Since we now treat KDB_REPEAT_* as flags, there is no need to
pass KDB_REPEAT_NONE. It's just the default behaviour when no
flags are specified.
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
Cc: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Diffstat (limited to 'kernel/trace')
-rw-r--r-- | kernel/trace/trace_kdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/trace_kdb.c b/kernel/trace/trace_kdb.c index 1e3b36c75048..3da7e3043596 100644 --- a/kernel/trace/trace_kdb.c +++ b/kernel/trace/trace_kdb.c | |||
@@ -128,7 +128,7 @@ static int kdb_ftdump(int argc, const char **argv) | |||
128 | static __init int kdb_ftrace_register(void) | 128 | static __init int kdb_ftrace_register(void) |
129 | { | 129 | { |
130 | kdb_register_flags("ftdump", kdb_ftdump, "[skip_#lines] [cpu]", | 130 | kdb_register_flags("ftdump", kdb_ftdump, "[skip_#lines] [cpu]", |
131 | "Dump ftrace log", 0, KDB_REPEAT_NONE); | 131 | "Dump ftrace log", 0, 0); |
132 | return 0; | 132 | return 0; |
133 | } | 133 | } |
134 | 134 | ||