-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 92327 b: refs/heads/master c: 2d19123 h: refs/heads/master i: 92325: fe849d1 92323: 1f669af 92319: 7352777 v: v3
- Loading branch information
Mike Frysinger
authored and
Bryan Wu
committed
Apr 24, 2008
1 parent
844096c
commit f9d259d
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 8e9d5c7daff8b74bf3be62cfe0ba48b5af1fa12f | ||
refs/heads/master: 2d191233882a031304f41cfc6abfb70536780645 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,17 @@ | ||
#ifndef _BLACKFIN_BUG_H | ||
#define _BLACKFIN_BUG_H | ||
|
||
#ifdef CONFIG_BUG | ||
#define HAVE_ARCH_BUG | ||
|
||
#define BUG() do { \ | ||
dump_bfin_trace_buffer(); \ | ||
printk(KERN_EMERG "BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __func__); \ | ||
panic("BUG!"); \ | ||
} while (0) | ||
|
||
#endif | ||
|
||
#include <asm-generic/bug.h> | ||
|
||
#endif |