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>
This commit is contained in:
Martin Roth
2016-01-05 20:58:58 -07:00
committed by Stefan Reinauer
parent 2e0d9447db
commit 2ed0aa258f
29 changed files with 58 additions and 58 deletions

View File

@@ -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];