kernel-ark/include/asm-mips/bug.h
Ralf Baechle ffd099bd33 Fix build for CONFIG_BUG=n. Yes, bugs are now a compile time option ;-)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2005-10-29 19:31:17 +01:00

23 lines
328 B
C

#ifndef __ASM_BUG_H
#define __ASM_BUG_H
#include <linux/config.h>
#ifdef CONFIG_BUG
#include <asm/break.h>
#ifdef CONFIG_BUG
#define HAVE_ARCH_BUG
#define BUG() \
do { \
__asm__ __volatile__("break %0" : : "i" (BRK_BUG)); \
} while (0)
#endif
#endif
#include <asm-generic/bug.h>
#endif /* __ASM_BUG_H */