diff options
author | Alexander Nyberg <alexn@telia.com> | 2005-05-25 12:31:28 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-25 15:31:28 -0700 |
commit | 4f60fdf613536402e3313c5019b3ae6060b2ae4a (patch) | |
tree | 85205ce2d6c7b0d846fddc93527b4d55820ffe3b /arch/x86_64/kernel/traps.c | |
parent | dca79a046b93a81496bb30ca01177fb17f37ab72 (diff) | |
download | talos-obmc-linux-4f60fdf613536402e3313c5019b3ae6060b2ae4a.tar.gz talos-obmc-linux-4f60fdf613536402e3313c5019b3ae6060b2ae4a.zip |
[PATCH] x86_64: CONFIG_BUG=n fixes
Fixes some !CONFIG_BUG warnings:
include/asm/mmu_context.h: I funktion `switch_mm':
include/asm/mmu_context.h:57: varning: implicit declaration of function `out_of_line_bug'
Signed-off-by: Alexander Nyberg <alexn@telia.com>
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/kernel/traps.c')
-rw-r--r-- | arch/x86_64/kernel/traps.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/traps.c b/arch/x86_64/kernel/traps.c index 65a37f52c56e..3dfec8fdabcd 100644 --- a/arch/x86_64/kernel/traps.c +++ b/arch/x86_64/kernel/traps.c @@ -332,10 +332,12 @@ void handle_BUG(struct pt_regs *regs) printk(KERN_ALERT "Kernel BUG at %.50s:%d\n", f.filename, f.line); } +#ifdef CONFIG_BUG void out_of_line_bug(void) { BUG(); } +#endif static DEFINE_SPINLOCK(die_lock); static int die_owner = -1; |