diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2011-06-30 19:12:00 (GMT) |
---|---|---|
committer | Jason Wessel <jason.wessel@windriver.com> | 2011-08-01 18:23:58 (GMT) |
commit | 3bdb65ec95e6cccffc40102d7c003047c45da90c (patch) | |
tree | 6a93a5c062d5b7c496268005503749bb9080a217 /kernel/debug/kdb/kdb_cmds | |
parent | 02f8c6aee8df3cdc935e9bdd4f2d020306035dbe (diff) | |
download | linux-3bdb65ec95e6cccffc40102d7c003047c45da90c.tar.xz |
kdb: cleanup unused variables missed in the original kdb merge
The BTARGS and BTSYMARG variables do not have any function in the
mainline version of kdb.
Reported-by: Tim Bird <tim.bird@am.sony.com>
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Diffstat (limited to 'kernel/debug/kdb/kdb_cmds')
-rw-r--r-- | kernel/debug/kdb/kdb_cmds | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/debug/kdb/kdb_cmds b/kernel/debug/kdb/kdb_cmds index 56c88e4..9834ad3 100644 --- a/kernel/debug/kdb/kdb_cmds +++ b/kernel/debug/kdb/kdb_cmds @@ -18,16 +18,12 @@ defcmd dumpcommon "" "Common kdb debugging" endefcmd defcmd dumpall "" "First line debugging" - set BTSYMARG 1 - set BTARGS 9 pid R -dumpcommon -bta endefcmd defcmd dumpcpu "" "Same as dumpall but only tasks on cpus" - set BTSYMARG 1 - set BTARGS 9 pid R -dumpcommon -btc |