Linux Audio

Check our new training course

Loading...
v6.2
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _SPARC_BUG_H
 3#define _SPARC_BUG_H
 4
 5#ifdef CONFIG_BUG
 6#include <linux/compiler.h>
 7
 8#ifdef CONFIG_DEBUG_BUGVERBOSE
 9void do_BUG(const char *file, int line);
10#define BUG() do {					\
11	do_BUG(__FILE__, __LINE__);			\
12	barrier_before_unreachable();			\
13	__builtin_trap();				\
14} while (0)
15#else
16#define BUG() do {					\
17	barrier_before_unreachable();			\
18	__builtin_trap();				\
19} while (0)
20#endif
21
22#define HAVE_ARCH_BUG
23#endif
24
25#include <asm-generic/bug.h>
26
27struct pt_regs;
28void __noreturn die_if_kernel(char *str, struct pt_regs *regs);
29
30#endif
v4.10.11
 
 1#ifndef _SPARC_BUG_H
 2#define _SPARC_BUG_H
 3
 4#ifdef CONFIG_BUG
 5#include <linux/compiler.h>
 6
 7#ifdef CONFIG_DEBUG_BUGVERBOSE
 8void do_BUG(const char *file, int line);
 9#define BUG() do {					\
10	do_BUG(__FILE__, __LINE__);			\
 
11	__builtin_trap();				\
12} while (0)
13#else
14#define BUG()		__builtin_trap()
 
 
 
15#endif
16
17#define HAVE_ARCH_BUG
18#endif
19
20#include <asm-generic/bug.h>
21
22struct pt_regs;
23void __noreturn die_if_kernel(char *str, struct pt_regs *regs);
24
25#endif