diff options
author | Martin Roth <martinroth@google.com> | 2016-01-05 20:58:58 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-01-07 22:57:02 +0100 |
commit | 2ed0aa258f4bcbf978998ccd3a76f7b1c2d3d031 (patch) | |
tree | 3bb7459dcae2b0fa15ed409b1f7d3fb5f77af127 /src/arch | |
parent | 2e0d9447db22183e2d3393d84e221e8bb1613d45 (diff) | |
download | coreboot-2ed0aa258f4bcbf978998ccd3a76f7b1c2d3d031.tar.xz |
Correct some common spelling mistakes
- occured -> occurred
- accomodate -> accommodate
- existant -> existent
- asssertion -> assertion
- manangement -> management
- cotroller -> controller
Change-Id: Ibd6663752466d691fabbdc216ea05f2b58ac12d1
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/12850
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/arm/armv7/bootblock.S | 2 | ||||
-rw-r--r-- | src/arch/x86/exception.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/arm/armv7/bootblock.S b/src/arch/arm/armv7/bootblock.S index 16d7b92c47..ad7085d778 100644 --- a/src/arch/arm/armv7/bootblock.S +++ b/src/arch/arm/armv7/bootblock.S @@ -91,7 +91,7 @@ call_bootblock: ldr r0,=0x00000000 /* * The current design of cpu_info places the struct at the top of the - * stack. Free enough space to accomodate for that, but make sure it's + * stack. Free enough space to accommodate for that, but make sure it's * 8-byte aligned for ABI compliance. */ sub sp, sp, #16 diff --git a/src/arch/x86/exception.c b/src/arch/x86/exception.c index 65181e224e..d675ebada8 100644 --- a/src/arch/x86/exception.c +++ b/src/arch/x86/exception.c @@ -385,7 +385,7 @@ void x86_exception(struct eregs *info) signo = exception_to_signal[info->vector]; } - /* reply to the host that an exception has occured */ + /* reply to the host that an exception has occurred */ out_buffer[0] = 'S'; out_buffer[1] = hexchars[(signo>>4) & 0xf]; out_buffer[2] = hexchars[signo & 0xf]; |