Fix typos found by codespell

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Stefan Weil 2015-10-02 08:46:40 +02:00 committed by Kevin O'Connor
parent 62de31b4fe
commit 6bcacf7d19
12 changed files with 13 additions and 13 deletions

View File

@ -376,7 +376,7 @@ void print_title(WINDOW *dialog, const char *title, int width)
/*
* Print a string of text in a window, automatically wrap around to the
* next line if the string is too long to fit on one line. Newline
* characters '\n' are propperly processed. We start on a new line
* characters '\n' are properly processed. We start on a new line
* if there is no room for at least 4 nonblanks following a double-space.
*/
void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x)

View File

@ -20,7 +20,7 @@ choice
Configure for an emulated machine (QEMU, Xen, KVM, or Bochs).
config CSM
bool "Build as Compatibilty Support Module for EFI BIOS"
bool "Build as Compatibility Support Module for EFI BIOS"
help
Configure to be used by EFI firmware as Compatibility Support
module (CSM) to provide legacy BIOS services.

View File

@ -12,7 +12,7 @@
/****************************************************************
* Interupt vector table
* Interrupt vector table
****************************************************************/
#define GET_IVT(vector) \

View File

@ -1,6 +1,6 @@
/*
* Basic BMP data process and Raw picture data handle functions.
* Could be used to adjust pixel data format, get infomation, etc.
* Could be used to adjust pixel data format, get information, etc.
*
* Copyright (C) 2011 Wayne Xia <xiawenc@cn.ibm.com>
*

View File

@ -65,7 +65,7 @@ make_bios_writable_intel(u16 bdf, u32 pam0)
if (!(reg & 0x10)) {
// QEMU doesn't fully implement the piix shadow capabilities -
// if ram isn't backing the bios segment when shadowing is
// disabled, the code itself wont be in memory. So, run the
// disabled, the code itself won't be in memory. So, run the
// code from the high-memory flash location.
u32 pos = (u32)__make_bios_writable_intel + BIOS_SRC_OFFSET;
void (*func)(u16 bdf, u32 pam0) = (void*)pos;

View File

@ -56,7 +56,7 @@ void VISIBLE16
handle_10(struct bregs *regs)
{
debug_enter(regs, DEBUG_HDL_10);
// dont do anything, since the VGA BIOS handles int10h requests
// don't do anything, since the VGA BIOS handles int10h requests
}
// NMI handler

View File

@ -33,7 +33,7 @@ sha1_block(u32 *w, sha1_ctx *ctx)
static const u32 sha_ko[4] = {
0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6 };
/* change endianess of given data */
/* change endianness of given data */
for (i = 0; i < 16; i++)
w[i] = be32_to_cpu(w[i]);
@ -120,7 +120,7 @@ sha1_do(sha1_ctx *ctx, const u8 *data32, u32 length)
sha1_block(w, ctx);
/* need to switch result's endianess */
/* need to switch result's endianness */
for (num = 0; num < 5; num++)
ctx->h[num] = cpu_to_be32(ctx->h[num]);
}

View File

@ -7,7 +7,7 @@
/****************************************************************
* Interupt vector table
* Interrupt vector table
****************************************************************/
struct rmode_IVT {

View File

@ -227,7 +227,7 @@ strtcpy(char *dest, const char *src, size_t len)
return dest;
}
// locate first occurance of character c in the string s
// locate first occurrence of character c in the string s
char *
strchr(const char *s, int c)
{

View File

@ -70,7 +70,7 @@ extern void __force_link_error__only_in_16bit(void) __noreturn;
# define VARFSEG __section(".discard.varfseg." UNIQSEC) __VISIBLE __weak
// Designate a variable at a specific address in the f-segment.
# define VARFSEGFIXED(addr) __section(".discard.varfixed." UNIQSEC) __VISIBLE __weak
// Verify a variable is only accessable via 32bit "init" functions
// Verify a variable is only accessible via 32bit "init" functions
# define VARVERIFY32INIT __section(".discard.varinit." UNIQSEC)
// Designate top-level assembler as 16bit only.
# define ASM16(code) __ASM(code)

View File

@ -124,7 +124,7 @@ getAMDRamSpeed(void)
/* int 0x15 - 5f18
ECX = unknown/dont care
ECX = unknown/don't care
EBX[3..0] Frame Buffer Size 2^N MiB
EBX[7..4] Memory speed:
0: SDR 66Mhz

View File

@ -2,7 +2,7 @@
//
// Copyright (C) 2009 Chris Kindt
//
// Writen for Google Summer of Code 2009 for the coreboot project
// Written for Google Summer of Code 2009 for the coreboot project
//
// This file may be distributed under the terms of the GNU LGPLv3 license.