summaryrefslogtreecommitdiffstats
path: root/src/device/oprom
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-08-07 12:23:43 +0200
committerMartin Roth <martinroth@google.com>2018-08-09 15:57:35 +0000
commit394ec02298091e87946a1aa82fba572819410a55 (patch)
treeaa0b4140b697f61488a61e5d31313c1837dde42e /src/device/oprom
parent58d5df778a78f969af0d5c33a6ba145d125e4cf1 (diff)
downloadcoreboot-394ec02298091e87946a1aa82fba572819410a55.tar.gz
coreboot-394ec02298091e87946a1aa82fba572819410a55.tar.bz2
coreboot-394ec02298091e87946a1aa82fba572819410a55.zip
src/device: Fix typo
Change-Id: I65e57b37db9649b30ca25b2150f21ebffee73105 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/27917 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/device/oprom')
-rw-r--r--src/device/oprom/x86emu/prim_ops.c2
-rw-r--r--src/device/oprom/yabel/mem.c6
-rw-r--r--src/device/oprom/yabel/vbe.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/device/oprom/x86emu/prim_ops.c b/src/device/oprom/x86emu/prim_ops.c
index 8b2c38a5adbb..3c4a8caf5b3e 100644
--- a/src/device/oprom/x86emu/prim_ops.c
+++ b/src/device/oprom/x86emu/prim_ops.c
@@ -68,7 +68,7 @@
*
* By inspection, one gets: cc = ab + r'(a + b)
*
-* That represents alot of operations, but NO CHOICE....
+* That represents a lot of operations, but NO CHOICE....
*
* Borrow Chain Calculation.
*
diff --git a/src/device/oprom/yabel/mem.c b/src/device/oprom/yabel/mem.c
index 86d99826d66d..49b6c4f9b38d 100644
--- a/src/device/oprom/yabel/mem.c
+++ b/src/device/oprom/yabel/mem.c
@@ -365,7 +365,7 @@ my_wrb(u32 addr, u8 val)
unsigned long translated_addr = addr;
u8 translated = biosemu_dev_translate_address(IORESOURCE_MEM, &translated_addr);
if (translated != 0) {
- //translation successfull, access VGA Memory (BAR or Legacy...)
+ //translation successful, access VGA Memory (BAR or Legacy...)
DEBUG_PRINTF_MEM("%s(%x, %x): access to VGA Memory\n",
__func__, addr, val);
//DEBUG_PRINTF_MEM("%s(%08x): translated_addr: %llx\n", __func__, addr, translated_addr);
@@ -390,7 +390,7 @@ my_wrw(u32 addr, u16 val)
unsigned long translated_addr = addr;
u8 translated = biosemu_dev_translate_address(IORESOURCE_MEM, &translated_addr);
if (translated != 0) {
- //translation successfull, access VGA Memory (BAR or Legacy...)
+ //translation successful, access VGA Memory (BAR or Legacy...)
DEBUG_PRINTF_MEM("%s(%x, %x): access to VGA Memory\n",
__func__, addr, val);
//DEBUG_PRINTF_MEM("%s(%08x): translated_addr: %llx\n", __func__, addr, translated_addr);
@@ -435,7 +435,7 @@ my_wrl(u32 addr, u32 val)
unsigned long translated_addr = addr;
u8 translated = biosemu_dev_translate_address(IORESOURCE_MEM, &translated_addr);
if (translated != 0) {
- //translation successfull, access VGA Memory (BAR or Legacy...)
+ //translation successful, access VGA Memory (BAR or Legacy...)
DEBUG_PRINTF_MEM("%s(%x, %x): access to VGA Memory\n",
__func__, addr, val);
//DEBUG_PRINTF_MEM("%s(%08x): translated_addr: %llx\n", __func__, addr, translated_addr);
diff --git a/src/device/oprom/yabel/vbe.c b/src/device/oprom/yabel/vbe.c
index c8b99d53b41f..872ca15fbc3a 100644
--- a/src/device/oprom/yabel/vbe.c
+++ b/src/device/oprom/yabel/vbe.c
@@ -502,7 +502,7 @@ vbe_get_info(void)
vbe_get_ddc_info(&ddc_info);
#if 0
- DEBUG_PRINTF_VBE("DDC: edid_tranfer_time: %d\n",
+ DEBUG_PRINTF_VBE("DDC: edid_transfer_time: %d\n",
ddc_info.edid_transfer_time);
DEBUG_PRINTF_VBE("DDC: ddc_level: %x\n", ddc_info.ddc_level);
DEBUG_PRINTF_VBE("DDC: EDID:\n");