Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6
[deliverable/linux.git] / include / asm-m68k / bug.h
CommitLineData
1da177e4
LT
1#ifndef _M68K_BUG_H
2#define _M68K_BUG_H
3
1da177e4 4
c8538a7a 5#ifdef CONFIG_BUG
1da177e4
LT
6#ifdef CONFIG_DEBUG_BUGVERBOSE
7#ifndef CONFIG_SUN3
8#define BUG() do { \
9 printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
e8006b06 10 __builtin_trap(); \
1da177e4
LT
11} while (0)
12#else
13#define BUG() do { \
14 printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
15 panic("BUG!"); \
16} while (0)
17#endif
18#else
19#define BUG() do { \
e8006b06 20 __builtin_trap(); \
1da177e4
LT
21} while (0)
22#endif
23
24#define HAVE_ARCH_BUG
c8538a7a
MM
25#endif
26
1da177e4
LT
27#include <asm-generic/bug.h>
28
29#endif
This page took 0.371084 seconds and 5 git commands to generate.