aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/x86/16bit
diff options
context:
space:
mode:
authorVikram Narayanan <vikram186@gmail.com>2012-01-21 20:19:14 +0530
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-01-21 18:48:47 +0100
commit15370ca0688beff07cfbdf69ef47b0284227ef03 (patch)
treee30c9eac13340c340b34c8e2c6b251f58d7952d0 /src/cpu/x86/16bit
parentea07b9fa6cabbf63151438f88db66d0fad1542fe (diff)
trivial: spelling fixes in comments
Few spelling fixes in entry16.inc Change-Id: Iad3d18eee3f498171cb766589aaebefdcf0e9767 Signed-off-by: Vikram Narayanan <vikram186@gmail.com> Reviewed-on: http://review.coreboot.org/571 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/cpu/x86/16bit')
-rw-r--r--src/cpu/x86/16bit/entry16.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/x86/16bit/entry16.inc b/src/cpu/x86/16bit/entry16.inc
index fb211554b8..0fa8c11524 100644
--- a/src/cpu/x86/16bit/entry16.inc
+++ b/src/cpu/x86/16bit/entry16.inc
@@ -70,7 +70,7 @@ _start:
*
* This means that anything except cs:ip relative offsets are
* a real pain in 16 bit mode. And explains why it is almost
- * imposible to get gas to do lgdt correctly.
+ * impossible to get gas to do lgdt correctly.
*
* One way to work around this is to have the linker do the
* math instead of the assembler. This solves the very
@@ -94,7 +94,7 @@ _start:
* The restrictions in reset16.inc mean that _start initially
* must be loaded at or above 0xffff0000 or below 0x100000.
*
- * The linker scripts computs gdtptr16_offset by simply returning
+ * The linker scripts computes gdtptr16_offset by simply returning
* the low 16 bits. This means that the intial segment used
* when start is called must be 64K aligned. This should not
* restrict the address as the ip address can be anything.