summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2019-02-08 11:13:42 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-02-08 10:57:46 +0000
commit9e366b4e0b4135eb8f4d4a5aed021d3858243a88 (patch)
tree7a7d76527ed70428b50004486d4106aa2e96d751
parent2aaf169cbe91eb429a5944216474d26e844edf4f (diff)
downloadcoreboot-9e366b4e0b4135eb8f4d4a5aed021d3858243a88.tar.gz
coreboot-9e366b4e0b4135eb8f4d4a5aed021d3858243a88.tar.bz2
coreboot-9e366b4e0b4135eb8f4d4a5aed021d3858243a88.zip
drivers/keyboard: Fix spelling of *interface*
`git grep iterface` shows that these are the only two occurrences. Change-Id: I838a60c95c5d0fc3dee902f0b72761dd60c36221 Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de> Reviewed-on: https://review.coreboot.org/c/31286 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/drivers/pc80/pc/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/pc80/pc/keyboard.c b/src/drivers/pc80/pc/keyboard.c
index 415dbd1d1333..3849e73df040 100644
--- a/src/drivers/pc80/pc/keyboard.c
+++ b/src/drivers/pc80/pc/keyboard.c
@@ -259,7 +259,7 @@ uint8_t pc_keyboard_init(uint8_t probe_aux)
/* Run a keyboard controller self-test */
err = kbc_self_test(probe_aux, &aux_dev_detected);
- /* Ignore iterface failure as it's non-fatal. */
+ /* Ignore interface failure as it's non-fatal. */
if (err != CB_SUCCESS && err != CB_KBD_INTERFACE_FAILURE)
return 0;
@@ -370,7 +370,7 @@ void set_kbc_ps2_mode(void)
/* Run a keyboard controller self-test */
err = kbc_self_test(0, NULL);
- /* Ignore iterface failure as it's non-fatal. */
+ /* Ignore interface failure as it's non-fatal. */
if (err != CB_SUCCESS && err != CB_KBD_INTERFACE_FAILURE)
return;