From 9e366b4e0b4135eb8f4d4a5aed021d3858243a88 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 8 Feb 2019 11:13:42 +0100 Subject: drivers/keyboard: Fix spelling of *interface* MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `git grep iterface` shows that these are the only two occurrences. Change-Id: I838a60c95c5d0fc3dee902f0b72761dd60c36221 Signed-off-by: Paul Menzel Reviewed-on: https://review.coreboot.org/c/31286 Reviewed-by: Kyösti Mälkki Reviewed-by: Patrick Georgi Tested-by: build bot (Jenkins) --- src/drivers/pc80/pc/keyboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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; -- cgit v1.2.3