diff options
author | Robin Getz <robin.getz@analog.com> | 2010-03-15 20:42:07 +0300 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-05-21 17:40:19 +0400 |
commit | 9a95e2f1008ee433c496a81628cdde67acc8e4b1 (patch) | |
tree | 44f08c82c40a664f6757da01e3f9e7b7f719afab /arch/blackfin/include/asm/trace.h | |
parent | d60805ad470aef52465f3dc982212f559d9f661b (diff) | |
download | linux-9a95e2f1008ee433c496a81628cdde67acc8e4b1.tar.xz |
Blackfin: make hardware trace output a little more useful
Decode the vast majority of insns that appear in the trace buffer to get a
better idea of what's going on at a glance.
Signed-off-by: Robin Getz <robin.getz@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/include/asm/trace.h')
-rw-r--r-- | arch/blackfin/include/asm/trace.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/blackfin/include/asm/trace.h b/arch/blackfin/include/asm/trace.h index 91179395baa8..33589a29b8d8 100644 --- a/arch/blackfin/include/asm/trace.h +++ b/arch/blackfin/include/asm/trace.h @@ -25,10 +25,10 @@ extern unsigned long trace_buff_offset; extern unsigned long software_trace_buff[]; #if defined(CONFIG_DEBUG_VERBOSE) extern void decode_address(char *buf, unsigned long address); -extern bool get_instruction(unsigned short *val, unsigned short *address); +extern bool get_instruction(unsigned int *val, unsigned short *address); #else -#define decode_address(buf, address) -#define get_instruction(val, address) 0 +static inline void decode_address(char *buf, unsigned long address) { } +static inline bool get_instruction(unsigned int *val, unsigned short *address) { return false; } #endif /* Trace Macros for C files */ |