diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2018-10-10 14:22:48 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-10-17 12:01:51 +0000 |
commit | 773cc1b413af580db3dedebafe4cdfdf7808aa29 (patch) | |
tree | ac5e6e9a4c90f95fe5416deaf26ee8b2937afb99 /src/arch/x86 | |
parent | 900fcb50f4c9559737955f4ad51dae9e3deb5e57 (diff) |
arch/x86/exception: Improve the readability of a comment
Add punctuation and fix a typo.
Change-Id: Ic61c665f7e2daefb50b478a1710ea66c8a88235a
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/28993
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/exception.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/exception.c b/src/arch/x86/exception.c index a281c54c1d..0f42fdf79f 100644 --- a/src/arch/x86/exception.c +++ b/src/arch/x86/exception.c @@ -554,8 +554,8 @@ struct intr_gate { /* Even though the vecX symbols are interrupt entry points just treat them like data to more easily get the pointer values in C. Because IDT entries - format splits the offset field up one can't use the linker to resolve - parts of a relecation on x86 ABI an array of pointers is used to gather + format splits the offset field up, one can't use the linker to resolve + parts of a relocation on x86 ABI. An array of pointers is used to gather the symbols. The IDT is initialized at runtime when exception_init() is called. */ extern u8 vec0[], vec1[], vec2[], vec3[], vec4[], vec5[], vec6[], vec7[]; |