aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/kdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/kdb.h')
-rw-r--r--include/linux/kdb.h4
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 @@
15 15
16typedef enum { 16typedef enum {
17 KDB_REPEAT_NONE = 0, /* Do not repeat this command */ 17 KDB_REPEAT_NONE = 0, /* Do not repeat this command */
18 KDB_REPEAT_NO_ARGS, /* Repeat the command without arguments */ 18 KDB_REPEAT_NO_ARGS = 0x1, /* Repeat the command w/o arguments */
19 KDB_REPEAT_WITH_ARGS, /* Repeat the command including its arguments */ 19 KDB_REPEAT_WITH_ARGS = 0x2, /* Repeat the command w/ its arguments */
20} kdb_cmdflags_t; 20} kdb_cmdflags_t;
21 21
22typedef int (*kdb_func_t)(int, const char **); 22typedef int (*kdb_func_t)(int, const char **);