Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / arch / score / include / asm / bug.h
blob966b2e9e8d744dde8a8706d9bd4345437004acd2
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_SCORE_BUG_H
3 #define _ASM_SCORE_BUG_H
5 #include <asm-generic/bug.h>
7 struct pt_regs;
8 extern void __die(const char *, struct pt_regs *, const char *,
9 const char *, unsigned long) __attribute__((noreturn));
10 extern void __die_if_kernel(const char *, struct pt_regs *, const char *,
11 const char *, unsigned long);
13 #define die(msg, regs) \
14 __die(msg, regs, __FILE__ ":", __func__, __LINE__)
15 #define die_if_kernel(msg, regs) \
16 __die_if_kernel(msg, regs, __FILE__ ":", __func__, __LINE__)
18 #endif /* _ASM_SCORE_BUG_H */