]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
arm64: Make ESR_ELx_xVC_IMM_MASK compatible with assembly
authorAlexandru Elisei <alexandru.elisei@arm.com>
Mon, 25 Apr 2022 11:44:40 +0000 (12:44 +0100)
committerCatalin Marinas <catalin.marinas@arm.com>
Fri, 29 Apr 2022 18:26:26 +0000 (19:26 +0100)
ESR_ELx_xVC_IMM_MASK is used as a mask for the immediate value for the
HVC/SMC instructions. The header file is included by assembly files (like
entry.S) and ESR_ELx_xVC_IMM_MASK is not conditioned on __ASSEMBLY__ being
undefined. Use the UL() macro for defining the constant's size, as that is
compatible with both C code and assembly, whereas the UL suffix only works
for C code.

Signed-off-by: Alexandru Elisei <alexandru.elisei@arm.com>
Reviewed-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20220425114444.368693-2-alexandru.elisei@arm.com
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/include/asm/esr.h

index d52a0b269ee80e7604f6b1b72c36fea52c0152b8..7356e2f0575568da324c1f5a98bfc81748d9e50a 100644 (file)
 #define ESR_ELx_WFx_ISS_TI     (UL(1) << 0)
 #define ESR_ELx_WFx_ISS_WFI    (UL(0) << 0)
 #define ESR_ELx_WFx_ISS_WFE    (UL(1) << 0)
-#define ESR_ELx_xVC_IMM_MASK   ((1UL << 16) - 1)
+#define ESR_ELx_xVC_IMM_MASK   ((UL(1) << 16) - 1)
 
 #define DISR_EL1_IDS           (UL(1) << 24)
 /*