aboutsummaryrefslogtreecommitdiff
path: root/clients/net-snk/app/biosemu/vbe.c
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2023-03-06 13:49:26 +0100
committerAlexey Kardashevskiy <aik@ozlabs.ru>2023-03-28 18:53:20 +1100
commite8124ca96e34f702fbbf60925461a5f9857b46a1 (patch)
tree47ea2106258853bb12d7bdadce66cdbdda72c0ae /clients/net-snk/app/biosemu/vbe.c
parent8f6b2217b0fff8bc9ef07f7e11b6c323fd3f5b78 (diff)
downloadSLOF-e8124ca96e34f702fbbf60925461a5f9857b46a1.zip
SLOF-e8124ca96e34f702fbbf60925461a5f9857b46a1.tar.gz
SLOF-e8124ca96e34f702fbbf60925461a5f9857b46a1.tar.bz2
Fix typos in the clients folder
Found with the "codespell" utility Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Diffstat (limited to 'clients/net-snk/app/biosemu/vbe.c')
-rw-r--r--clients/net-snk/app/biosemu/vbe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/clients/net-snk/app/biosemu/vbe.c b/clients/net-snk/app/biosemu/vbe.c
index 957a1f2..f85314b 100644
--- a/clients/net-snk/app/biosemu/vbe.c
+++ b/clients/net-snk/app/biosemu/vbe.c
@@ -154,7 +154,7 @@ vbe_info(vbe_info_t * info)
// offset 4: 16bit le containing VbeVersion
info->version = in16le(vbe_info_buffer + 4);
- // offset 6: 32bit le containg segment:offset of OEM String in virtual Mem.
+ // offset 6: 32bit le containing segment:offset of OEM String in virtual Mem.
info->oem_string_ptr =
biosmem + ((in16le(vbe_info_buffer + 8) << 4) +
in16le(vbe_info_buffer + 6));
@@ -245,7 +245,7 @@ vbe_get_mode_info(vbe_mode_info_t * mode_info)
// offset 27: 8bit le memory model
mode_info->memory_model = *(mode_info->mode_info_block + 27);
- // offset 40: 32bit le containg offset of frame buffer memory ptr
+ // offset 40: 32bit le containing offset of frame buffer memory ptr
mode_info->framebuffer_address =
in32le(mode_info->mode_info_block + 40);