added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / arch / alpha / include / asm / bug.h
blob1720c8ad86fec780ca054e42ed8baaa21735e899
1 #ifndef _ALPHA_BUG_H
2 #define _ALPHA_BUG_H
4 #include <linux/linkage.h>
6 #ifdef CONFIG_BUG
7 #include <asm/pal.h>
9 /* ??? Would be nice to use .gprel32 here, but we can't be sure that the
10 function loaded the GP, so this could fail in modules. */
11 #define BUG() do { \
12 __asm__ __volatile__( \
13 "call_pal %0 # bugchk\n\t" \
14 ".long %1\n\t.8byte %2" \
15 : : "i"(PAL_bugchk), "i"(__LINE__), "i"(__FILE__)); \
16 for ( ; ; ); } while (0)
18 #define HAVE_ARCH_BUG
19 #endif
21 #include <asm-generic/bug.h>
23 #endif