···11#ifndef __ASM_SH64_BUG_H22#define __ASM_SH64_BUG_H3344-44+#ifdef CONFIG_BUG55/*66 * Tell the user there is some problem, then force a segfault (in process77 * context) or a panic (interrupt context).···1111 *(volatile int *)0 = 0; \1212} while (0)13131414-#define BUG_ON(condition) do { \1515- if (unlikely((condition)!=0)) \1616- BUG(); \1717-} while(0)1414+#define HAVE_ARCH_BUG1515+#endif18161919-#define WARN_ON(condition) do { \2020- if (unlikely((condition)!=0)) { \2121- printk("Badness in %s at %s:%d\n", __FUNCTION__, __FILE__, __LINE__); \2222- dump_stack(); \2323- } \2424-} while (0)1717+#include <asm-generic/bug.h>25182619#endif /* __ASM_SH64_BUG_H */2727-