mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 23:55:21 +07:00
f05a68653e
Drop extern for all prototypes and adjust alignment of parameters as required after the removal. In a few rare cases adjust linelength to conform to maximum 80 chars, and likewise in a few rare cases adjust alignment of parameters to static functions. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
26 lines
450 B
C
26 lines
450 B
C
#ifndef _SPARC_BUG_H
|
|
#define _SPARC_BUG_H
|
|
|
|
#ifdef CONFIG_BUG
|
|
#include <linux/compiler.h>
|
|
|
|
#ifdef CONFIG_DEBUG_BUGVERBOSE
|
|
void do_BUG(const char *file, int line);
|
|
#define BUG() do { \
|
|
do_BUG(__FILE__, __LINE__); \
|
|
__builtin_trap(); \
|
|
} while (0)
|
|
#else
|
|
#define BUG() __builtin_trap()
|
|
#endif
|
|
|
|
#define HAVE_ARCH_BUG
|
|
#endif
|
|
|
|
#include <asm-generic/bug.h>
|
|
|
|
struct pt_regs;
|
|
void __noreturn die_if_kernel(char *str, struct pt_regs *regs);
|
|
|
|
#endif
|