Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eea32d4c authored by Atsushi Nemoto's avatar Atsushi Nemoto Committed by Ralf Baechle
Browse files

[MIPS] save_context_stack fix



CONFIG_KALLSYMS=n case is obviously wrong, though it is harmless since
CONFIG_KALLSYMS is always enabled with CONFIG_STACKTRACE for now.

Signed-off-by: default avatarAtsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 089c7e7f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ static void save_context_stack(struct stack_trace *trace,
		pc = unwind_stack(task, &sp, pc, &ra);
	} while (pc);
#else
	save_raw_context_stack(sp);
	save_raw_context_stack(trace, sp);
#endif
}