RISC-V: stacktrace: Declare sp_in_global outside ifdef
authorGuenter Roeck <linux@roeck-us.net>
Mon, 13 Apr 2020 16:12:34 +0000 (09:12 -0700)
committerPalmer Dabbelt <palmerdabbelt@google.com>
Tue, 21 Apr 2020 17:50:45 +0000 (10:50 -0700)
commitaf2bdf828f7963fd139ea8c5e23fd2c4e0dfca97
tree6507519376eb18f6ad1c3a641cfbaf67df241da8
parentae83d0b416db002fe95601e7f97f64b59514d936
RISC-V: stacktrace: Declare sp_in_global outside ifdef

riscv:allnoconfig and riscv:tinyconfig fail to compile.

arch/riscv/kernel/stacktrace.c: In function 'walk_stackframe':
arch/riscv/kernel/stacktrace.c:78:8: error: 'sp_in_global' undeclared

sp_in_global is declared inside CONFIG_FRAME_POINTER but used outside
of it.

Fixes: 52e7c52d2ded ("RISC-V: Stop relying on GCC's register allocator's hueristics")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Palmer Dabbelt <palmerdabbelt@google.com>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
arch/riscv/kernel/stacktrace.c