USB: Obscure Maxon BP3-USB Device Support 16d8:6280 for option driver
[linux-2.6/s3c2410-cpufreq.git] / include / asm-mn10300 / bug.h
blob4fcf3384e259d666eaf23788f553a5d2bc263b41
1 /* MN10300 Kernel bug reporting
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
11 #ifndef _ASM_BUG_H
12 #define _ASM_BUG_H
15 * Tell the user there is some problem.
17 #define _debug_bug_trap() \
18 do { \
19 asm volatile( \
20 " syscall 15 \n" \
21 "0: \n" \
22 " .section __bug_table,\"a\" \n" \
23 " .long 0b,%0,%1 \n" \
24 " .previous \n" \
25 : \
26 : "i"(__FILE__), "i"(__LINE__) \
27 ); \
28 } while (0)
30 #define BUG() _debug_bug_trap()
32 #define HAVE_ARCH_BUG
33 #include <asm-generic/bug.h>
35 #endif /* _ASM_BUG_H */