summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorRobin Getz2008-10-28 04:36:11 +0100
committerBryan Wu2008-10-28 04:36:11 +0100
commit4ee1c45337e7b529eed644c6f62399d797dcbc10 (patch)
tree4b8c093942bdb8175e0a780bf66c371eea2046f3 /arch
parentBlackfin arch: don't copy bss when copying L1 (diff)
downloadkernel-qcow2-linux-4ee1c45337e7b529eed644c6f62399d797dcbc10.tar.gz
kernel-qcow2-linux-4ee1c45337e7b529eed644c6f62399d797dcbc10.tar.xz
kernel-qcow2-linux-4ee1c45337e7b529eed644c6f62399d797dcbc10.zip
Blackfin arch: Fix typo when adding CONFIG_DEBUG_VERBOSE
Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org> Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/blackfin/kernel/traps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/blackfin/kernel/traps.c b/arch/blackfin/kernel/traps.c
index 0003616d02a2..bef025b07443 100644
--- a/arch/blackfin/kernel/traps.c
+++ b/arch/blackfin/kernel/traps.c
@@ -59,7 +59,7 @@
#endif
-#ifdef CONFIG_VERBOSE_DEBUG
+#ifdef CONFIG_DEBUG_VERBOSE
#define verbose_printk(fmt, arg...) \
printk(fmt, ##arg)
#else
@@ -574,7 +574,7 @@ asmlinkage void trap_c(struct pt_regs *fp)
#endif
panic("Kernel exception");
} else {
-#ifdef CONFIG_VERBOSE_DEBUG
+#ifdef CONFIG_DEBUG_VERBOSE
unsigned long *stack;
/* Dump the user space stack */
stack = (unsigned long *)rdusp();