diff options
author | Nicholas Mc Guire <[email protected]> | 2014-10-27 18:28:05 +0100 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2014-10-28 11:24:17 +0100 |
commit | a1a5831d295f34eceec3ba12c199c2c070e1aaed (patch) | |
tree | 9b651e3ffa5845de38b66c5b9f4d22d2bc3b6718 | |
parent | c4a7bba29bc6d9fcd5842d712b6b3d493b682b17 (diff) |
x86/asm: Fix typo in arch/x86/kernel/asm_offset_64.c
Drop double entry for pt_regs_bx.
This seems to be a typo - resulting in a double entry in the
generated include/generated/asm-offsets.h, which is not necessary.
Build-tested and booted on x86 64 box to make sure it was not
doing any strange magic.... after all it was in the kernel in
this form for almost 10 years.
Signed-off-by: Nicholas Mc Guire <[email protected]>
Cc: Jan Beulich <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Linus Torvalds <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | arch/x86/kernel/asm-offsets_64.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kernel/asm-offsets_64.c b/arch/x86/kernel/asm-offsets_64.c index e7c798b354fa..4f9359f36bb7 100644 --- a/arch/x86/kernel/asm-offsets_64.c +++ b/arch/x86/kernel/asm-offsets_64.c @@ -48,7 +48,6 @@ int main(void) #define ENTRY(entry) OFFSET(pt_regs_ ## entry, pt_regs, entry) ENTRY(bx); - ENTRY(bx); ENTRY(cx); ENTRY(dx); ENTRY(sp); |