This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

18 lines
295 B
C

#ifndef __ASM_SH_BUG_H
#define __ASM_SH_BUG_H
#include <linux/config.h>
/*
* Tell the user there is some problem.
*/
#define BUG() do { \
printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
asm volatile("nop"); \
} while (0)
#define HAVE_ARCH_BUG
#include <asm-generic/bug.h>
#endif