sh: Clean up code of Solution Engine 770x
[deliverable/linux.git] / include / asm-blackfin / bug.h
CommitLineData
1394f032
BW
1#ifndef _BLACKFIN_BUG_H
2#define _BLACKFIN_BUG_H
2d191233
MF
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
1394f032 15#include <asm-generic/bug.h>
2d191233 16
1394f032 17#endif
This page took 0.190918 seconds and 5 git commands to generate.