Commit 4ee1c453 authored by Robin Getz's avatar Robin Getz Committed by Bryan Wu

Blackfin arch: Fix typo when adding CONFIG_DEBUG_VERBOSE

Signed-off-by: default avatarRobin Getz <rgetz@blackfin.uclinux.org>
Signed-off-by: default avatarBryan Wu <cooloney@kernel.org>
parent 3b1f26a5
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
#endif #endif
#ifdef CONFIG_VERBOSE_DEBUG #ifdef CONFIG_DEBUG_VERBOSE
#define verbose_printk(fmt, arg...) \ #define verbose_printk(fmt, arg...) \
printk(fmt, ##arg) printk(fmt, ##arg)
#else #else
...@@ -574,7 +574,7 @@ asmlinkage void trap_c(struct pt_regs *fp) ...@@ -574,7 +574,7 @@ asmlinkage void trap_c(struct pt_regs *fp)
#endif #endif
panic("Kernel exception"); panic("Kernel exception");
} else { } else {
#ifdef CONFIG_VERBOSE_DEBUG #ifdef CONFIG_DEBUG_VERBOSE
unsigned long *stack; unsigned long *stack;
/* Dump the user space stack */ /* Dump the user space stack */
stack = (unsigned long *)rdusp(); stack = (unsigned long *)rdusp();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment