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 /include/linux | |
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 'include/linux')
-rw-r--r-- | include/linux/kdb.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/kdb.h b/include/linux/kdb.h index 90aed7c31f0d..39b44b37c8dc 100644 --- a/include/linux/kdb.h +++ b/include/linux/kdb.h | |||
@@ -14,7 +14,6 @@ | |||
14 | */ | 14 | */ |
15 | 15 | ||
16 | typedef enum { | 16 | typedef enum { |
17 | KDB_REPEAT_NONE = 0, /* Do not repeat this command */ | ||
18 | KDB_REPEAT_NO_ARGS = 0x1, /* Repeat the command w/o arguments */ | 17 | KDB_REPEAT_NO_ARGS = 0x1, /* Repeat the command w/o arguments */ |
19 | KDB_REPEAT_WITH_ARGS = 0x2, /* Repeat the command w/ its arguments */ | 18 | KDB_REPEAT_WITH_ARGS = 0x2, /* Repeat the command w/ its arguments */ |
20 | } kdb_cmdflags_t; | 19 | } kdb_cmdflags_t; |