diff options
author | Robin Getz <rgetz@blackfin.uclinux.org> | 2008-10-28 03:36:11 (GMT) |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-10-28 03:36:11 (GMT) |
commit | 4ee1c45337e7b529eed644c6f62399d797dcbc10 (patch) | |
tree | 4b8c093942bdb8175e0a780bf66c371eea2046f3 /arch/blackfin | |
parent | 3b1f26a50a2bfbd2825345b49b1d7f78432a7a4c (diff) | |
download | linux-fsl-qoriq-4ee1c45337e7b529eed644c6f62399d797dcbc10.tar.xz |
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/blackfin')
-rw-r--r-- | arch/blackfin/kernel/traps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/blackfin/kernel/traps.c b/arch/blackfin/kernel/traps.c index 0003616..bef025b 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(); |