diff options
author | Martin Roth <martin.roth@se-eng.com> | 2013-07-08 16:24:19 -0600 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-07-10 20:17:25 +0200 |
commit | 63373edce006983d1e2aef7d71c1653ae337ed18 (patch) | |
tree | fdc6a687ac72663e19767296eb8cd25ee0d99c0e /src/device/oprom/yabel/interrupt.c | |
parent | 50d887d4f4f5f4c4717a2308f4bf069d86ca4ff7 (diff) |
device: Fix spelling
Change-Id: I53a40d114aa2da76398c5b97443d4096809dcf36
Signed-off-by: Martin Roth <martin.roth@se-eng.com>
Reviewed-on: http://review.coreboot.org/3730
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/device/oprom/yabel/interrupt.c')
-rw-r--r-- | src/device/oprom/yabel/interrupt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/oprom/yabel/interrupt.c b/src/device/oprom/yabel/interrupt.c index e5b4a3cff4..cf430be6cd 100644 --- a/src/device/oprom/yabel/interrupt.c +++ b/src/device/oprom/yabel/interrupt.c @@ -243,7 +243,7 @@ handleInt16(void) // since we currently always read the char from the FW buffer, // we misuse the ring buffer, we use it as pointer to a u64 that stores // multi-byte keys (e.g. special keys in VT100 terminal) - // and as long as a key is available (not 0) we dont read further keys + // and as long as a key is available (not 0) we don't read further keys u64 *keycode = (u64 *) (M.mem_base + 0x41e); s8 c; // function number in AH @@ -538,7 +538,7 @@ handleInterrupt(int intNum) DEBUG_PRINTF_INTR("%s(%x)\n", __func__, intNum); #endif - /* check wether this interrupt has a function pointer set in yabel_intFuncArray and run that */ + /* check whether this interrupt has a function pointer set in yabel_intFuncArray and run that */ if (yabel_intFuncArray[intNum]) { DEBUG_PRINTF_INTR("%s(%x) intHandler overridden, calling it...\n", __func__, intNum); int_handled = (*yabel_intFuncArray[intNum])(); |