diff options
author | Arun KS <arunks@codeaurora.org> | 2019-04-30 16:05:04 +0530 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2019-05-01 14:39:26 +0100 |
commit | 61cf61d81e326163ce1557ceccfca76e11d0e57c (patch) | |
tree | 271d4b625f34f1aa7475fa6f47e894dd440f32d2 /arch/arm64 | |
parent | 5fbbeedb9a8f039e0a531435c7894905c1d51e77 (diff) |
arm64: Fix size of __early_cpu_boot_status
__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>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/kernel/head.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/head.S b/arch/arm64/kernel/head.S index f533305849d7..fcae3f85c6cd 100644 --- a/arch/arm64/kernel/head.S +++ b/arch/arm64/kernel/head.S @@ -684,7 +684,7 @@ ENTRY(__boot_cpu_mode) * with MMU turned off. */ ENTRY(__early_cpu_boot_status) - .long 0 + .quad 0 .popsection |