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

Commit 5f8ca53a authored by Tengfei Fan's avatar Tengfei Fan
Browse files

soc: qcom: use MODULES_END instead of KIMAGE_VADDR



Because of KIMAGE_VADDR is not defined by ARM32, so in order to
support minidump function on ARM32, so use MODULES_END instead
of KIMAGE_VADDR, because MODULES_END are defined by ARM64 and
ARM32.

Change-Id: Ie0d990baa17a207ceb7ed56faa9b5256f31a3e17
Signed-off-by: default avatarTengfei Fan <tengfeif@codeaurora.org>
parent c6837205
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@ void dump_stack_minidump(u64 sp)
	if (is_idle_task(current))
		return;

	if (sp < KIMAGE_VADDR || sp > -256UL)
	if (sp < MODULES_END || sp > -256UL)
		sp = current_stack_pointer;

	/*