diff options
author | Raul E Rangel <rrangel@chromium.org> | 2020-04-24 13:57:26 -0600 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2020-04-29 04:56:52 +0000 |
commit | fa52f31e114d7d15b49dca448832138c884138cd (patch) | |
tree | e7006ff6c796be147fbb7487a4e147b9c1115197 | |
parent | eb148d88d1af5b4fb409794e974f89cf2705741a (diff) |
cpu/x86/16bit/entry16.inc: Fix typos in comment
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: I89d4d9d3a4a8a7545921dabb50f33035a090ecda
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40696
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/cpu/x86/16bit/entry16.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/x86/16bit/entry16.inc b/src/cpu/x86/16bit/entry16.inc index f7fd416d42..c71acb0bff 100644 --- a/src/cpu/x86/16bit/entry16.inc +++ b/src/cpu/x86/16bit/entry16.inc @@ -71,13 +71,13 @@ _start16bit: * * One way to work around this is to have the linker do the * math instead of the assembler. This solves the very - * pratical problem of being able to write code that can + * practical problem of being able to write code that can * be relocated. * * An lgdt call before we have memory enabled cannot be * position independent, as we cannot execute a call * instruction to get our current instruction pointer. - * So while this code is relocateable it isn't arbitrarily + * So while this code is relocatable it isn't arbitrarily * relocatable. * * The criteria for relocation have been relaxed to their |