diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2008-09-26 10:36:42 -0500 |
---|---|---|
committer | Jason Wessel <jason.wessel@windriver.com> | 2008-09-26 10:36:42 -0500 |
commit | 95dbf1dbe39ed336a3e72116c95cfa98dd3457e6 (patch) | |
tree | 47a387fffb1076ce3213b3f44a8147ae875424c3 /include | |
parent | d7161a65341556bacb5e6654e133803f46f51063 (diff) | |
download | linux-3.10-95dbf1dbe39ed336a3e72116c95cfa98dd3457e6.tar.gz linux-3.10-95dbf1dbe39ed336a3e72116c95cfa98dd3457e6.tar.bz2 linux-3.10-95dbf1dbe39ed336a3e72116c95cfa98dd3457e6.zip |
kgdb, x86_64: gdb serial has BX and DX reversed
The BX and DX registers in the gdb serial register packet need to be
flipped for gdb to receive the correct data.
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/kgdb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-x86/kgdb.h b/include/asm-x86/kgdb.h index 484c47554f3..e86b3060bdc 100644 --- a/include/asm-x86/kgdb.h +++ b/include/asm-x86/kgdb.h @@ -42,9 +42,9 @@ enum regnames { #else /* ! CONFIG_X86_32 */ enum regnames { GDB_AX, /* 0 */ - GDB_DX, /* 1 */ + GDB_BX, /* 1 */ GDB_CX, /* 2 */ - GDB_BX, /* 3 */ + GDB_DX, /* 3 */ GDB_SI, /* 4 */ GDB_DI, /* 5 */ GDB_BP, /* 6 */ |