diff options
author | Paul Menzel <pmenzel@molgen.mpg.de> | 2019-02-08 11:13:42 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-02-08 10:57:46 +0000 |
commit | 9e366b4e0b4135eb8f4d4a5aed021d3858243a88 (patch) | |
tree | 7a7d76527ed70428b50004486d4106aa2e96d751 /src/drivers/pc80/pc | |
parent | 2aaf169cbe91eb429a5944216474d26e844edf4f (diff) | |
download | coreboot-9e366b4e0b4135eb8f4d4a5aed021d3858243a88.tar.xz |
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>
Diffstat (limited to 'src/drivers/pc80/pc')
-rw-r--r-- | src/drivers/pc80/pc/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/pc80/pc/keyboard.c b/src/drivers/pc80/pc/keyboard.c index 415dbd1d13..3849e73df0 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; |