Elyes HAOUAS has uploaded this change for review. ( https://review.coreboot.org/27919
Change subject: src/arch: Fix typo ......................................................................
src/arch: Fix typo
Change-Id: I24d219b4ce6033f64886e22973ca8716113d319f Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/arch/arm/armv7/thread.c M src/arch/x86/thread.c 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/19/27919/1
diff --git a/src/arch/arm/armv7/thread.c b/src/arch/arm/armv7/thread.c index 751745b..9c1c1bb 100644 --- a/src/arch/arm/armv7/thread.c +++ b/src/arch/arm/armv7/thread.c @@ -70,7 +70,7 @@ void __attribute__((naked)) switch_to_thread(uintptr_t new_stack, uintptr_t *saved_stack) { - /* Defintions for those of us not totally familiar with ARM: + /* Definitions for those of us not totally familiar with ARM: * R15 -- PC, R14 -- LR, R13 -- SP * R0-R3 need not be saved, nor R12. * on entry, the only saved state is in LR -- the old PC. diff --git a/src/arch/x86/thread.c b/src/arch/x86/thread.c index 0a11141..b1cd99f 100644 --- a/src/arch/x86/thread.c +++ b/src/arch/x86/thread.c @@ -47,7 +47,7 @@ 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;