From e1d57f7610921471d5fef0c78f7f9bb054a6ada1 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Thu, 20 Jun 2019 14:22:26 +0200 Subject: arch/arm/cpu: use ALIGN_UP instead of ALIGN for better readability Change-Id: Id0e281ece0a647721c18402029cd6980f75d5908 Signed-off-by: Felix Held Reviewed-on: https://review.coreboot.org/c/coreboot/+/33631 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: HAOUAS Elyes --- src/arch/arm/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/arm/cpu.c b/src/arch/arm/cpu.c index fae1a37efc..93d5675f35 100644 --- a/src/arch/arm/cpu.c +++ b/src/arch/arm/cpu.c @@ -39,7 +39,7 @@ struct cpu_info *cpu_info(void) "feature, make sure you add the proper assertions " \ "(and maybe consider revising the whole thing to work closer to what " \ "arm64 is doing now)." - uintptr_t addr = ALIGN((uintptr_t)__builtin_frame_address(0), + uintptr_t addr = ALIGN_UP((uintptr_t)__builtin_frame_address(0), CONFIG_STACK_SIZE); addr -= sizeof(struct cpu_info); return (void *)addr; -- cgit v1.2.3