Merge tag 'soc-ep93xx-dt-6.12' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
[linux-2.6-block.git] / arch / alpha / include / asm / bug.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _ALPHA_BUG_H
3#define _ALPHA_BUG_H
4
ed6b9b97
AM
5#include <linux/linkage.h>
6
c8538a7a 7#ifdef CONFIG_BUG
1da177e4
LT
8#include <asm/pal.h>
9
10/* ??? Would be nice to use .gprel32 here, but we can't be sure that the
11 function loaded the GP, so this could fail in modules. */
fb9a6800 12#define BUG() do { \
945048ca
IK
13 __asm__ __volatile__( \
14 "call_pal %0 # bugchk\n\t" \
15 ".long %1\n\t.8byte %2" \
16 : : "i"(PAL_bugchk), "i"(__LINE__), "i"(__FILE__)); \
acadbfb9
DD
17 unreachable(); \
18 } while (0)
1da177e4
LT
19
20#define HAVE_ARCH_BUG
c8538a7a
MM
21#endif
22
1da177e4
LT
23#include <asm-generic/bug.h>
24
25#endif