aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/kdb.h
diff options
context:
space:
mode:
authorAnton Vorontsov <anton.vorontsov@linaro.org>2014-11-06 14:36:44 +0000
committerJason Wessel <jason.wessel@windriver.com>2014-11-11 09:31:52 -0600
commite8ab24d9b0173ada3eeed31d7d7f982228efc2c5 (patch)
tree250188c433b4451cc90c905d738c161651e7552d /include/linux/kdb.h
parentkdb: Use KDB_REPEAT_* values as flags (diff)
downloadwireguard-linux-e8ab24d9b0173ada3eeed31d7d7f982228efc2c5.tar.xz
wireguard-linux-e8ab24d9b0173ada3eeed31d7d7f982228efc2c5.zip
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.h1
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;