diff options
author | Nobuhiro Iwamatsu <hemamu@t-base.ne.jp> | 2006-12-31 19:21:43 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-02-12 20:54:45 -0500 |
commit | 86b67ef7518d1fcd4489dc464d4c33a274a1c635 (patch) | |
tree | 178485345d72d36e64d8da1f4b890477170c5163 /arch/sh/kernel/traps.c | |
parent | adac9570966eb2eb137209e552b258d4d1d4825b (diff) |
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 <hemamu@t-base.ne.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/traps.c')
-rw-r--r-- | arch/sh/kernel/traps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/traps.c b/arch/sh/kernel/traps.c index ec110157992d..e91224faf6c4 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) | |||
156 | { | 156 | { |
157 | } | 157 | } |
158 | #endif /* CONFIG_DEBUG_BUGVERBOSE */ | 158 | #endif /* CONFIG_DEBUG_BUGVERBOSE */ |
159 | #endif /* CONFIG_BUG */ | ||
160 | 159 | ||
161 | void handle_BUG(struct pt_regs *regs) | 160 | void handle_BUG(struct pt_regs *regs) |
162 | { | 161 | { |
163 | do_bug_verbose(regs); | 162 | do_bug_verbose(regs); |
164 | die("Kernel BUG", regs, TRAPA_BUG_OPCODE & 0xff); | 163 | die("Kernel BUG", regs, TRAPA_BUG_OPCODE & 0xff); |
165 | } | 164 | } |
165 | #endif /* CONFIG_BUG */ | ||
166 | 166 | ||
167 | /* | 167 | /* |
168 | * handle an instruction that does an unaligned memory access by emulating the | 168 | * handle an instruction that does an unaligned memory access by emulating the |