From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: redhat.com, ip: 209.132.183.28, mailfrom: philmd@redhat.com) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by groups.io with SMTP; Thu, 26 Sep 2019 05:04:57 -0700 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 00F2B3082E03; Thu, 26 Sep 2019 12:04:57 +0000 (UTC) Received: from x1w.redhat.com (unknown [10.40.205.127]) by smtp.corp.redhat.com (Postfix) with ESMTPS id AEC0860126; Thu, 26 Sep 2019 12:04:54 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Philippe Mathieu-Daude , Jian J Wang , Hao A Wu , Dandan Bi , Liming Gao Subject: [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name Date: Thu, 26 Sep 2019 14:04:43 +0200 Message-Id: <20190926120446.16007-2-philmd@redhat.com> In-Reply-To: <20190926120446.16007-1-philmd@redhat.com> References: <20190926120446.16007-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.46]); Thu, 26 Sep 2019 12:04:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable An extra 's' slipped into the FvIsBeingProcessed function name. Drop it to fix the typo. Signed-off-by: Philippe Mathieu-Daude --- MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c b/MdeModulePkg= /Core/Dxe/Dispatcher/Dispatcher.c index c310b40b5298..fed60c48825d 100644 --- a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c +++ b/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c @@ -696,7 +696,7 @@ FvHasBeenProcessed ( =20 **/ KNOWN_HANDLE * -FvIsBeingProcesssed ( +FvIsBeingProcessed ( IN EFI_HANDLE FvHandle ) { @@ -1253,7 +1253,7 @@ CoreFwVolEventProtocolNotify ( // // Since we are about to process this Fv mark it as processed. // - KnownHandle =3D FvIsBeingProcesssed (FvHandle); + KnownHandle =3D FvIsBeingProcessed (FvHandle); if (KnownHandle =3D=3D NULL) { // // The FV with the same FV name guid has already been processed. --=20 2.20.1