GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / bug.h
blobd276b5510c83498bbd4815367ef05cf398beee3b
1 #ifndef _LINUX_BUG_H
2 #define _LINUX_BUG_H
4 #include <asm/bug.h>
6 enum bug_trap_type {
7 BUG_TRAP_TYPE_NONE = 0,
8 BUG_TRAP_TYPE_WARN = 1,
9 BUG_TRAP_TYPE_BUG = 2,
12 struct pt_regs;
14 #ifdef CONFIG_GENERIC_BUG
15 #include <asm-generic/bug.h>
17 static inline int is_warning_bug(const struct bug_entry *bug)
19 return bug->flags & BUGFLAG_WARNING;
22 const struct bug_entry *find_bug(unsigned long bugaddr);
24 enum bug_trap_type report_bug(unsigned long bug_addr, struct pt_regs *regs);
26 /* These are defined by the architecture */
27 int is_valid_bugaddr(unsigned long addr);
29 #else /* !CONFIG_GENERIC_BUG */
31 static inline enum bug_trap_type report_bug(unsigned long bug_addr,
32 struct pt_regs *regs)
34 return BUG_TRAP_TYPE_BUG;
37 #endif /* CONFIG_GENERIC_BUG */
38 #endif /* _LINUX_BUG_H */