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>
This commit is contained in:
Paul Menzel 2019-02-08 11:13:42 +01:00 committed by Patrick Georgi
parent 2aaf169cbe
commit 9e366b4e0b
1 changed files with 2 additions and 2 deletions

View File

@ -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;