Commit 31f7497c authored by Arun KS's avatar Arun KS Committed by Greg Kroah-Hartman

arm64: Fix size of __early_cpu_boot_status

commit 61cf61d8 upstream.

__early_cpu_boot_status is of type long. Use quad
assembler directive to allocate proper size.
Acked-by: default avatarMark Rutland <mark.rutland@arm.com>
Signed-off-by: default avatarArun KS <arunks@codeaurora.org>
Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9c23e008
...@@ -667,7 +667,7 @@ ENTRY(__boot_cpu_mode) ...@@ -667,7 +667,7 @@ ENTRY(__boot_cpu_mode)
* with MMU turned off. * with MMU turned off.
*/ */
ENTRY(__early_cpu_boot_status) ENTRY(__early_cpu_boot_status)
.long 0 .quad 0
.popsection .popsection
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment