diff options
author | Anton Vorontsov <anton.vorontsov@linaro.org> | 2014-11-06 17:36:44 +0300 |
---|---|---|
committer | Jason Wessel <jason.wessel@windriver.com> | 2014-11-11 18:31:52 +0300 |
commit | e8ab24d9b0173ada3eeed31d7d7f982228efc2c5 (patch) | |
tree | 250188c433b4451cc90c905d738c161651e7552d /include/linux/kdb.h | |
parent | 04bb171e7aa99dee0c92e772e4f66f8d5c1b4081 (diff) | |
download | linux-e8ab24d9b0173ada3eeed31d7d7f982228efc2c5.tar.xz |
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/kdb.h')
-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 @@ */ typedef enum { - KDB_REPEAT_NONE = 0, /* Do not repeat this command */ KDB_REPEAT_NO_ARGS = 0x1, /* Repeat the command w/o arguments */ KDB_REPEAT_WITH_ARGS = 0x2, /* Repeat the command w/ its arguments */ } kdb_cmdflags_t; |