Skip to content
Snippets Groups Projects
Commit 5e5ef784 authored by Arun KS's avatar Arun KS Committed by Yang Yingliang
Browse files

arm64: Fix size of __early_cpu_boot_status


stable inclusion
from linux-4.19.115
commit 31f7497ca521cf9a1903581145d72000d71206ea

--------------------------------

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>
Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
parent f5e08d2a
No related branches found
No related tags found
No related merge requests found
......@@ -667,7 +667,7 @@ ENTRY(__boot_cpu_mode)
* with MMU turned off.
*/
ENTRY(__early_cpu_boot_status)
.long 0
.quad 0
.popsection
......
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