kdb: Use KDB_REPEAT_* values as flags
[deliverable/linux.git] / include / linux / kdb.h
index 32d2f407981d65caa48a31b669cea7c0b47521a5..90aed7c31f0d730b4d3df4a4ab205c12fe6c002b 100644 (file)
@@ -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 **);
This page took 0.026794 seconds and 5 git commands to generate.