diff options
author | Andi Kleen <ak@suse.de> | 2005-04-16 18:24:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:24:51 -0400 |
commit | f18de453eb52dae49bc512ccfa638d9a0f153771 (patch) | |
tree | 93961a6548b398f72824b264601142de97f5a988 | |
parent | db4686812835a497d6f5de1e6cf6e8010a3fc0c7 (diff) |
[PATCH] x86-64: Fix BUG()
Use the correct file name in BUG()
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | include/asm-x86_64/bug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86_64/bug.h b/include/asm-x86_64/bug.h index d2032f56e87c..19aed6e78fec 100644 --- a/include/asm-x86_64/bug.h +++ b/include/asm-x86_64/bug.h | |||
@@ -18,7 +18,7 @@ struct bug_frame { | |||
18 | #define HAVE_ARCH_BUG | 18 | #define HAVE_ARCH_BUG |
19 | #define BUG() \ | 19 | #define BUG() \ |
20 | asm volatile("ud2 ; .quad %c1 ; .short %c0" :: \ | 20 | asm volatile("ud2 ; .quad %c1 ; .short %c0" :: \ |
21 | "i"(__LINE__), "i" (__stringify(KBUILD_BASENAME))) | 21 | "i"(__LINE__), "i" (__stringify(__FILE__))) |
22 | void out_of_line_bug(void); | 22 | void out_of_line_bug(void); |
23 | #include <asm-generic/bug.h> | 23 | #include <asm-generic/bug.h> |
24 | 24 | ||