diff options
author | Anton Vorontsov <anton.vorontsov@linaro.org> | 2014-11-06 14:36:43 +0000 |
---|---|---|
committer | Jason Wessel <jason.wessel@windriver.com> | 2014-11-11 09:31:51 -0600 |
commit | 04bb171e7aa99dee0c92e772e4f66f8d5c1b4081 (patch) | |
tree | 3458b0e17522270aaffcfd694988f6677d06ca3b /include/linux/kdb.h | |
parent | 42c884c10b775ce04f8aabe488820134625c893e (diff) | |
download | linux-stable-04bb171e7aa99dee0c92e772e4f66f8d5c1b4081.tar.gz linux-stable-04bb171e7aa99dee0c92e772e4f66f8d5c1b4081.tar.bz2 linux-stable-04bb171e7aa99dee0c92e772e4f66f8d5c1b4081.zip |
kdb: Use KDB_REPEAT_* values as flags
The actual values of KDB_REPEAT_* enum values and overall logic stayed
the same, but we now treat the values as flags.
This makes it possible to add other flags and combine them, plus makes
the code a lot simpler and shorter. But functionality-wise, there should
be no changes.
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/kdb.h b/include/linux/kdb.h index 32d2f407981d..90aed7c31f0d 100644 --- a/include/linux/kdb.h +++ b/include/linux/kdb.h @@ -15,8 +15,8 @@ typedef enum { KDB_REPEAT_NONE = 0, /* Do not repeat this command */ - KDB_REPEAT_NO_ARGS, /* Repeat the command without arguments */ - KDB_REPEAT_WITH_ARGS, /* Repeat the command including its arguments */ + 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; typedef int (*kdb_func_t)(int, const char **); |