summaryrefslogtreecommitdiff
path: root/arch/arm64
diff options
context:
space:
mode:
authorArun KS <arunks@codeaurora.org>2019-04-30 16:05:04 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-04-13 10:34:37 +0200
commit0b3c8d538ddbcf09ff6135544d70f9b24b0b8c82 (patch)
tree9aa3767afc5dea013ee614c7ea390bfc3b760ae4 /arch/arm64
parent3e1b1597690106327668b353beb988044dc11ebb (diff)
arm64: Fix size of __early_cpu_boot_status
commit 61cf61d81e326163ce1557ceccfca76e11d0e57c upstream. __early_cpu_boot_status is of type long. Use quad assembler directive to allocate proper size. Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Arun KS <arunks@codeaurora.org> Signed-off-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/arm64')
-rw-r--r--arch/arm64/kernel/head.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/head.S b/arch/arm64/kernel/head.S
index 9c00fd2acc2a..bd24c8aed612 100644
--- a/arch/arm64/kernel/head.S
+++ b/arch/arm64/kernel/head.S
@@ -558,7 +558,7 @@ ENTRY(__boot_cpu_mode)
* with MMU turned off.
*/
ENTRY(__early_cpu_boot_status)
- .long 0
+ .quad 0
.popsection