src/arch: Fix typo

Change-Id: I24d219b4ce6033f64886e22973ca8716113d319f
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/27919
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Elyes HAOUAS
2018-08-07 12:24:42 +02:00
committed by Martin Roth
parent 64f6b71af5
commit 2f79eb3fd5
4 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ void arch_prepare_thread(struct thread *t,
stack = push_stack(stack, (uintptr_t)arg);
stack = push_stack(stack, (uintptr_t)0);
stack = push_stack(stack, (uintptr_t)thread_entry);
/* Make room for the registers. Ignore intial values. */
/* Make room for the registers. Ignore initial values. */
stack -= sizeof(struct pushad_regs);
t->stack_current = stack;