From: Andrew F. Davis Date: Mon, 11 Jun 2018 19:04:17 +0000 (-0500) Subject: arm: Do not clear LR on exception in SPL X-Git-Tag: v2018.07-rc2~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1b73c18724eb8cb75f7a60d851578d933c78095;p=platform%2Fkernel%2Fu-boot.git arm: Do not clear LR on exception in SPL When an exception or interrupt occurs the link register (LR) may contain the source of the exception, although we do not print the value it may still be extracted with a debugger. When in SPL we loop on getting and exception, but use a linking branch, which over-writes the LR value, use a regular branch instruction here. Signed-off-by: Andrew F. Davis --- diff --git a/arch/arm/lib/vectors.S b/arch/arm/lib/vectors.S index 79afc27..d629cb1 100644 --- a/arch/arm/lib/vectors.S +++ b/arch/arm/lib/vectors.S @@ -133,7 +133,7 @@ not_used: irq: fiq: 1: - bl 1b /* hang and never return */ + b 1b /* hang and never return */ #else /* !CONFIG_SPL_BUILD */