diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2008-11-18 12:48:22 +0300 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-11-18 12:48:22 +0300 |
commit | 36f649a55aa3ad1e2196403ba95a652f9900bc50 (patch) | |
tree | b2a547a3c946ccc1377b4ac0787806128f1d1a4e /arch/blackfin/kernel/traps.c | |
parent | 400597842452c02916a61a51f3154dd032c2d569 (diff) | |
download | linux-36f649a55aa3ad1e2196403ba95a652f9900bc50.tar.xz |
Blackfin arch: do not define decode_instruction if hwtrace is turned off
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/kernel/traps.c')
-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 af7cc43630de..950cc822fb75 100644 --- a/arch/blackfin/kernel/traps.c +++ b/arch/blackfin/kernel/traps.c @@ -649,13 +649,13 @@ static bool get_instruction(unsigned short *val, unsigned short *address) return false; } -/* +/* * decode the instruction if we are printing out the trace, as it * makes things easier to follow, without running it through objdump * These are the normal instructions which cause change of flow, which * would be at the source of the trace buffer */ -#ifdef CONFIG_DEBUG_VERBOSE +#if defined(CONFIG_DEBUG_VERBOSE) && defined(CONFIG_DEBUG_BFIN_HWTRACE_ON) static void decode_instruction(unsigned short *address) { unsigned short opcode; |