diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/romstage_stack.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/romstage_stack.c b/src/lib/romstage_stack.c index fde9d1b9b2..ed6f09b4cb 100644 --- a/src/lib/romstage_stack.c +++ b/src/lib/romstage_stack.c @@ -44,5 +44,8 @@ uintptr_t romstage_ram_stack_top(void) uintptr_t stack_top = romstage_ram_stack_base(ROMSTAGE_RAM_STACK_SIZE, ROMSTAGE_STACK_CBMEM); stack_top += ROMSTAGE_RAM_STACK_SIZE; + + /* Make it aligned to a 8-byte boundary. */ + stack_top = ALIGN_DOWN(stack_top, 8); return stack_top; } |