From: Nobuhiro Iwamatsu Date: Mon, 1 Jan 2007 00:21:43 +0000 (+0900) Subject: sh: Fix handle_BUG() compile error. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=86b67ef7518d1fcd4489dc464d4c33a274a1c635;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git sh: Fix handle_BUG() compile error. handle_BUG() uses TRAPA_BUG_OPCODE which is only defined for CONFIG_BUG, make sure it's not built when CONFIG_BUG=n. Signed-off-by: Nobuhiro Iwamatsu Signed-off-by: Paul Mundt --- diff --git a/arch/sh/kernel/traps.c b/arch/sh/kernel/traps.c index ec110157992..e91224faf6c 100644 --- a/arch/sh/kernel/traps.c +++ b/arch/sh/kernel/traps.c @@ -156,13 +156,13 @@ static inline void do_bug_verbose(struct pt_regs *regs) { } #endif /* CONFIG_DEBUG_BUGVERBOSE */ -#endif /* CONFIG_BUG */ void handle_BUG(struct pt_regs *regs) { do_bug_verbose(regs); die("Kernel BUG", regs, TRAPA_BUG_OPCODE & 0xff); } +#endif /* CONFIG_BUG */ /* * handle an instruction that does an unaligned memory access by emulating the