From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.120]) by mx.groups.io with SMTP id smtpd.web10.8221.1575389805141761703 for ; Tue, 03 Dec 2019 08:16:45 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=TxqA9yG3; spf=pass (domain: redhat.com, ip: 207.211.31.120, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1575389804; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=0tjFutIY1za09iYKRkYNqRI5gJXZwTMHVllecYQZ+7U=; b=TxqA9yG3YlcPCRYefcNQniafzB0LRxa+s0HlwrsnEd7HfxlPbKrA794vB65JaLL35yBdn6 G3YyUGdN4lJZT7w6sHzvsd/qrnR7ahktF4Q0f1ZZdiyVZAqaisFglEQZ3iGoqS8GWw/cH8 tbqoqYVUxCN00d3wsKFavECOxDWYo2Q= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-413-A13LqJo4MBeLBFjk_3R7dQ-1; Tue, 03 Dec 2019 11:16:40 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 69F4F477; Tue, 3 Dec 2019 16:16:39 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-86.brq.redhat.com [10.40.204.86]) by smtp.corp.redhat.com (Postfix) with ESMTPS id ED73560C80; Tue, 3 Dec 2019 16:16:34 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Antoine Coeur , Leif Lindholm , Ard Biesheuvel , Philippe Mathieu-Daude Subject: [PATCH 04/79] EmbeddedPkg/VirtualKeyboard: Fix few typos Date: Tue, 3 Dec 2019 17:14:47 +0100 Message-Id: <20191203161602.15969-5-philmd@redhat.com> In-Reply-To: <20191203161602.15969-1-philmd@redhat.com> References: <20191203161602.15969-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: A13LqJo4MBeLBFjk_3R7dQ-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Antoine Coeur Fix few typos in the documentation. Cc: Leif Lindholm Cc: Ard Biesheuvel Reviewed-by: Philippe Mathieu-Daude Signed-off-by: Philippe Mathieu-Daude --- EmbeddedPkg/Drivers/VirtualKeyboardDxe/VirtualKeyboard.h | 14 +++++++-----= -- EmbeddedPkg/Drivers/VirtualKeyboardDxe/VirtualKeyboard.c | 16 ++++++++----= ---- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/EmbeddedPkg/Drivers/VirtualKeyboardDxe/VirtualKeyboard.h b/Emb= eddedPkg/Drivers/VirtualKeyboardDxe/VirtualKeyboard.h index 29bc7a06fb16..026449046653 100644 --- a/EmbeddedPkg/Drivers/VirtualKeyboardDxe/VirtualKeyboard.h +++ b/EmbeddedPkg/Drivers/VirtualKeyboardDxe/VirtualKeyboard.h @@ -323,7 +323,7 @@ VirtualKeyboardReset ( ); =20 /** - Reset the input device and optionaly run diagnostics + Reset the input device and optionally run diagnostics =20 @param This Protocol instance pointer. @param ExtendedVerification Driver may perform diagnostics on reset. @@ -373,7 +373,7 @@ VirtualKeyboardSetState ( =20 =20 @retval EFI_SUCCESS The notification function was registered= successfully. - @retval EFI_OUT_OF_RESOURCES Unable to allocate resources for necesss= ary data structures. + @retval EFI_OUT_OF_RESOURCES Unable to allocate resources for necessa= ry data structures. @retval EFI_INVALID_PARAMETER KeyData or NotifyHandle is NULL. =20 **/ @@ -429,7 +429,7 @@ VirtualKeyboardFreeNotifyList ( state data for the key that was pressed. =20 @retval TRUE Key be pressed matches a registered key. - @retval FLASE Match failed. + @retval FALSE Match failed. =20 **/ BOOLEAN @@ -441,7 +441,7 @@ IsKeyRegistered ( /** Waiting on the keyboard event, if there's any key pressed by the user, s= ignal the event =20 - @param Event The event that be siganlled when any key has been st= roked. + @param Event The event that be signalled when any key has been st= roked. @param Context Pointer of the protocol EFI_SIMPLE_TEXT_INPUT_PROTOC= OL. =20 **/ @@ -455,7 +455,7 @@ VirtualKeyboardWaitForKey ( /** Waiting on the keyboard event, if there's any key pressed by the user, s= ignal the event =20 - @param Event The event that be siganlled when any key has been strok= ed. + @param Event The event that be signalled when any key has been strok= ed. @param Context Pointer of the protocol EFI_SIMPLE_TEXT_INPUT_EX_PROTOC= OL. =20 **/ @@ -514,14 +514,14 @@ VirtualKeyboardReadKeyStroke ( =20 /** Reads the next keystroke from the input device. The WaitForKey Event can - be used to test for existance of a keystroke via WaitForEvent () call. + be used to test for existence of a keystroke via WaitForEvent () call. =20 @param This Protocol instance pointer. @param KeyData A pointer to a buffer that is filled in with the ke= ystroke state data for the key that was pressed. =20 @retval EFI_SUCCESS The keystroke information was returned. - @retval EFI_NOT_READY There was no keystroke data availiable. + @retval EFI_NOT_READY There was no keystroke data available. @retval EFI_DEVICE_ERROR The keystroke information was not returne= d due to hardware errors. @retval EFI_INVALID_PARAMETER KeyData is NULL. diff --git a/EmbeddedPkg/Drivers/VirtualKeyboardDxe/VirtualKeyboard.c b/Emb= eddedPkg/Drivers/VirtualKeyboardDxe/VirtualKeyboard.c index 750371a06723..e9d0b72ee6c3 100644 --- a/EmbeddedPkg/Drivers/VirtualKeyboardDxe/VirtualKeyboard.c +++ b/EmbeddedPkg/Drivers/VirtualKeyboardDxe/VirtualKeyboard.c @@ -437,7 +437,7 @@ VirtualKeyboardFreeNotifyList ( pressed. =20 @retval TRUE Key be pressed matches a registered key. - @retval FLASE Match failed. + @retval FALSE Match failed. =20 **/ BOOLEAN @@ -476,7 +476,7 @@ IsKeyRegistered ( Signal the event if there is key available =20 @param Event the event object - @param Context waitting context + @param Context waiting context =20 **/ VOID @@ -580,7 +580,7 @@ VirtualKeyboardReset ( } =20 /** - Reset the input device and optionaly run diagnostics + Reset the input device and optionally run diagnostics =20 @param This Protocol instance pointer. @param ExtendedVerification Driver may perform diagnostics on reset. @@ -621,7 +621,7 @@ VirtualKeyboardResetEx ( =20 /** Reads the next keystroke from the input device. The WaitForKey Event can - be used to test for existance of a keystroke via WaitForEvent () call. + be used to test for existence of a keystroke via WaitForEvent () call. =20 @param VirtualKeyboardPrivate Virtualkeyboard driver private structur= e. @param KeyData A pointer to a buffer that is filled in @@ -629,7 +629,7 @@ VirtualKeyboardResetEx ( that was pressed. =20 @retval EFI_SUCCESS The keystroke information was returned. - @retval EFI_NOT_READY There was no keystroke data availiable. + @retval EFI_NOT_READY There was no keystroke data available. @retval EFI_DEVICE_ERROR The keystroke information was not retur= ned due to hardware errors. @retval EFI_INVALID_PARAMETER KeyData is NULL. @@ -731,14 +731,14 @@ VirtualKeyboardReadKeyStroke ( =20 /** Reads the next keystroke from the input device. The WaitForKey Event can - be used to test for existance of a keystroke via WaitForEvent () call. + be used to test for existence of a keystroke via WaitForEvent () call. =20 @param This Protocol instance pointer. @param KeyData A pointer to a buffer that is filled in with the keystroke state data for the key that was pressed. =20 @retval EFI_SUCCESS The keystroke information was returned. - @retval EFI_NOT_READY There was no keystroke data availiable. + @retval EFI_NOT_READY There was no keystroke data available. @retval EFI_DEVICE_ERROR The keystroke information was not returne= d due to hardware errors. @retval EFI_INVALID_PARAMETER KeyData is NULL. @@ -808,7 +808,7 @@ VirtualKeyboardSetState ( =20 @retval EFI_SUCCESS The notification function was registered successfully. - @retval EFI_OUT_OF_RESOURCES Unable to allocate resources for necesss= ary + @retval EFI_OUT_OF_RESOURCES Unable to allocate resources for necessa= ry data structures. @retval EFI_INVALID_PARAMETER KeyData or NotifyHandle is NULL. =20 --=20 2.21.0