forked from Minki/linux
5875013900
With the current kbuild infrastructure in place no other changes are required for this to work. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
7 lines
144 B
C
7 lines
144 B
C
#define DEBUG 1
|
|
#ifdef CONFIG_COLDFIRE
|
|
#define BREAK asm volatile ("halt")
|
|
#else
|
|
#define BREAK *(volatile unsigned char *)0xdeadbee0 = 0
|
|
#endif
|