USB: UHCI: Increase port-reset completion delay for HP controllers
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-mips / bug.h
blob87d49a5bdc63a5863a49f912bd3048694c6c1b59
1 #ifndef __ASM_BUG_H
2 #define __ASM_BUG_H
4 #include <linux/config.h>
6 #ifdef CONFIG_BUG
8 #include <asm/break.h>
10 #define BUG() \
11 do { \
12 __asm__ __volatile__("break %0" : : "i" (BRK_BUG)); \
13 } while (0)
15 #define HAVE_ARCH_BUG
17 #endif
19 #include <asm-generic/bug.h>
21 #endif /* __ASM_BUG_H */