diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2011-05-23 22:22:54 +0400 |
---|---|---|
committer | Jason Wessel <jason.wessel@windriver.com> | 2011-08-01 22:23:59 +0400 |
commit | d613d828e8987a1f794378022f900b454fa95403 (patch) | |
tree | 637d466ae00621139e9d019c3a439ab0d8959cd5 /kernel/debug/kdb/kdb_io.c | |
parent | f679c4985bb2e7de9d39a5d40b6031361c4ad861 (diff) | |
download | linux-d613d828e8987a1f794378022f900b454fa95403.tar.xz |
kdb: Remove all references to DOING_KGDB2
The DOING_KGDB2 was originally a state variable for one of the two
ways to automatically transition from kdb to kgdb. Purge all these
variables and just use one single state for the transition.
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Diffstat (limited to 'kernel/debug/kdb/kdb_io.c')
-rw-r--r-- | kernel/debug/kdb/kdb_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/debug/kdb/kdb_io.c b/kernel/debug/kdb/kdb_io.c index bd233264b29f..0dbcdfbb6fd0 100644 --- a/kernel/debug/kdb/kdb_io.c +++ b/kernel/debug/kdb/kdb_io.c @@ -399,7 +399,7 @@ poll_again: strcmp(lastchar - 11, "$qSupported") == 0) { kdb_gdb_state_pass(lastchar - 11); strcpy(buffer, "kgdb"); - KDB_STATE_SET(DOING_KGDB2); + KDB_STATE_SET(DOING_KGDB); return buffer; } } |