diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-08-07 14:02:55 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-08-27 01:16:55 (GMT) |
commit | de4b21474053513d9ad41994c95dade3e6b3362f (patch) | |
tree | 60a44dbc1c8141386cc4a87d41620a4221e7f73f /include/asm-mips | |
parent | 3f478a873944fd4d040b7f40408da67e78473c8e (diff) | |
download | linux-fsl-qoriq-de4b21474053513d9ad41994c95dade3e6b3362f.tar.xz |
[MIPS] Fix build error if CONFIG_KALLSYMS is undefined.
CC arch/mips/kernel/traps.o
arch/mips/kernel/traps.c: In function 'show_backtrace':
arch/mips/kernel/traps.c:110: warning: unused variable 'ra'
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips')
-rw-r--r-- | include/asm-mips/stacktrace.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asm-mips/stacktrace.h b/include/asm-mips/stacktrace.h index 07f8733..87bd7ca 100644 --- a/include/asm-mips/stacktrace.h +++ b/include/asm-mips/stacktrace.h @@ -9,7 +9,10 @@ extern unsigned long unwind_stack(struct task_struct *task, unsigned long *sp, unsigned long pc, unsigned long *ra); #else #define raw_show_trace 1 -#define unwind_stack(task, sp, pc, ra) 0 +static inline unsigned long unwind_stack(struct task_struct *task, + unsigned long *sp, unsigned long pc, unsigned long *ra) +{ +} #endif static __always_inline void prepare_frametrace(struct pt_regs *regs) |