diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2008-04-23 20:58:44 -0400 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-04-23 20:58:44 -0400 |
commit | 2d191233882a031304f41cfc6abfb70536780645 (patch) | |
tree | c68d548dad2eaedc97230eac6edad71dbedc912c /include/asm-blackfin | |
parent | 8e9d5c7daff8b74bf3be62cfe0ba48b5af1fa12f (diff) |
[Blackfin] arch: define our own BUG() so we can dump the blackfin hardware trace buffer
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'include/asm-blackfin')
-rw-r--r-- | include/asm-blackfin/bug.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-blackfin/bug.h b/include/asm-blackfin/bug.h index 41e53b29f167..6d3e11b1fc57 100644 --- a/include/asm-blackfin/bug.h +++ b/include/asm-blackfin/bug.h | |||
@@ -1,4 +1,17 @@ | |||
1 | #ifndef _BLACKFIN_BUG_H | 1 | #ifndef _BLACKFIN_BUG_H |
2 | #define _BLACKFIN_BUG_H | 2 | #define _BLACKFIN_BUG_H |
3 | |||
4 | #ifdef CONFIG_BUG | ||
5 | #define HAVE_ARCH_BUG | ||
6 | |||
7 | #define BUG() do { \ | ||
8 | dump_bfin_trace_buffer(); \ | ||
9 | printk(KERN_EMERG "BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __func__); \ | ||
10 | panic("BUG!"); \ | ||
11 | } while (0) | ||
12 | |||
13 | #endif | ||
14 | |||
3 | #include <asm-generic/bug.h> | 15 | #include <asm-generic/bug.h> |
16 | |||
4 | #endif | 17 | #endif |