diff options
author | 2014-11-06 14:36:41 +0000 | |
---|---|---|
committer | 2014-11-11 09:31:51 -0600 | |
commit | 15a42a9bc9ffcff4315a7154313db08c6bf9ef11 (patch) | |
tree | 9ac766d8d3ef79e04ba7378abf6e648c2acb5db7 /kernel/debug/kdb/kdb_private.h | |
parent | kdb: Remove currently unused kdbtab_t->cmd_flags (diff) | |
download | linux-dev-15a42a9bc9ffcff4315a7154313db08c6bf9ef11.tar.xz linux-dev-15a42a9bc9ffcff4315a7154313db08c6bf9ef11.zip |
kdb: Rename kdb_repeat_t to kdb_cmdflags_t, cmd_repeat to cmd_flags
We're about to add more options for command behaviour, so let's expand
the meaning of kdb_repeat_t.
So far we just do various renames, there should be no functional 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 'kernel/debug/kdb/kdb_private.h')
-rw-r--r-- | kernel/debug/kdb/kdb_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/debug/kdb/kdb_private.h b/kernel/debug/kdb/kdb_private.h index c4c46c7b26fd..eaacd1693954 100644 --- a/kernel/debug/kdb/kdb_private.h +++ b/kernel/debug/kdb/kdb_private.h @@ -174,7 +174,7 @@ typedef struct _kdbtab { char *cmd_help; /* Help message for this command */ short cmd_minlen; /* Minimum legal # command * chars required */ - kdb_repeat_t cmd_repeat; /* Does command auto repeat on enter? */ + kdb_cmdflags_t cmd_flags; /* Command behaviour flags */ } kdbtab_t; extern int kdb_bt(int, const char **); /* KDB display back trace */ |