Paul Menzel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/31286
Change subject: drivers/keyboard: Fix spelling of *interface* ......................................................................
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 --- M src/drivers/pc80/pc/keyboard.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/86/31286/1
diff --git a/src/drivers/pc80/pc/keyboard.c b/src/drivers/pc80/pc/keyboard.c index 415dbd1..3849e73 100644 --- a/src/drivers/pc80/pc/keyboard.c +++ b/src/drivers/pc80/pc/keyboard.c @@ -259,7 +259,7 @@
/* 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 @@
/* 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;