aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-generic
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-generic')
-rw-r--r--include/asm-generic/bug.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/asm-generic/bug.h b/include/asm-generic/bug.h
index 6e5aaaa9a2fb..400c2b41896e 100644
--- a/include/asm-generic/bug.h
+++ b/include/asm-generic/bug.h
@@ -12,13 +12,6 @@
12} while (0) 12} while (0)
13#endif 13#endif
14 14
15#ifndef HAVE_ARCH_PAGE_BUG
16#define PAGE_BUG(page) do { \
17 printk("page BUG for page at %p\n", page); \
18 BUG(); \
19} while (0)
20#endif
21
22#ifndef HAVE_ARCH_BUG_ON 15#ifndef HAVE_ARCH_BUG_ON
23#define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0) 16#define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
24#endif 17#endif
@@ -37,10 +30,6 @@
37#define BUG() 30#define BUG()
38#endif 31#endif
39 32
40#ifndef HAVE_ARCH_PAGE_BUG
41#define PAGE_BUG(page) do { if (page) ; } while (0)
42#endif
43
44#ifndef HAVE_ARCH_BUG_ON 33#ifndef HAVE_ARCH_BUG_ON
45#define BUG_ON(condition) do { if (condition) ; } while(0) 34#define BUG_ON(condition) do { if (condition) ; } while(0)
46#endif 35#endif