Merge branches 'amd-iommu/fixes' and 'dma-debug/fixes' into iommu/fixes
[linux-2.6-block.git] / arch / alpha / include / asm / bug.h
CommitLineData
1da177e4
LT
1#ifndef _ALPHA_BUG_H
2#define _ALPHA_BUG_H
3
ed6b9b97
AM
4#include <linux/linkage.h>
5
c8538a7a 6#ifdef CONFIG_BUG
1da177e4
LT
7#include <asm/pal.h>
8
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. */
fb9a6800 11#define BUG() do { \
945048ca
IK
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__)); \
acadbfb9
DD
16 unreachable(); \
17 } while (0)
1da177e4
LT
18
19#define HAVE_ARCH_BUG
c8538a7a
MM
20#endif
21
1da177e4
LT
22#include <asm-generic/bug.h>
23
24#endif