X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=include%2Fasm-sh64%2Fbug.h;h=5d659ec28e10116fc85a56b89e7f2c92076d3c6b;hb=9464c7cf61b9433057924c36e6e02f303a00e768;hp=f3a9c9248ef4c788826a2a6a7ec5d71c4c50f38f;hpb=41689045f6a3cbe0550e1d34e9cc20d2e8c432ba;p=linux-2.6.git diff --git a/include/asm-sh64/bug.h b/include/asm-sh64/bug.h index f3a9c9248..5d659ec28 100644 --- a/include/asm-sh64/bug.h +++ b/include/asm-sh64/bug.h @@ -1,7 +1,8 @@ #ifndef __ASM_SH64_BUG_H #define __ASM_SH64_BUG_H -#ifdef CONFIG_BUG +#include + /* * Tell the user there is some problem, then force a segfault (in process * context) or a panic (interrupt context). @@ -11,9 +12,17 @@ *(volatile int *)0 = 0; \ } while (0) -#define HAVE_ARCH_BUG -#endif +#define BUG_ON(condition) do { \ + if (unlikely((condition)!=0)) \ + BUG(); \ +} while(0) -#include +#define WARN_ON(condition) do { \ + if (unlikely((condition)!=0)) { \ + printk("Badness in %s at %s:%d\n", __FUNCTION__, __FILE__, __LINE__); \ + dump_stack(); \ + } \ +} while (0) #endif /* __ASM_SH64_BUG_H */ +