From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.groups.io with SMTP id smtpd.web10.4972.1571232369594520529 for ; Wed, 16 Oct 2019 06:26:09 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: redhat.com, ip: 209.132.183.28, mailfrom: philmd@redhat.com) 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 mx1.redhat.com (Postfix) with ESMTPS id 1D139307D88C; Wed, 16 Oct 2019 13:26:09 +0000 (UTC) Received: from x1w.redhat.com (unknown [10.40.205.172]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 3B5DA60C4E; Wed, 16 Oct 2019 13:26:04 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Supreeth Venkatesh , Eric Dong , Liming Gao , Achin Gupta , Dandan Bi , Jiaxin Wu , Hao A Wu , Ray Ni , Siyuan Fu , Jiewen Yao , Jian J Wang , Laszlo Ersek , Philippe Mathieu-Daude Subject: [PATCH v2 3/4] StandaloneMmPkg/Core: Fix typo in function name Date: Wed, 16 Oct 2019 15:25:32 +0200 Message-Id: <20191016132533.8876-4-philmd@redhat.com> In-Reply-To: <20191016132533.8876-1-philmd@redhat.com> References: <20191016132533.8876-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.48]); Wed, 16 Oct 2019 13:26:09 +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. Reviewed-by: Laszlo Ersek Signed-off-by: Philippe Mathieu-Daude --- StandaloneMmPkg/Core/Dispatcher.c | 4 ++-- StandaloneMmPkg/Core/FwVol.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/StandaloneMmPkg/Core/Dispatcher.c b/StandaloneMmPkg/Core/Dis= patcher.c index 9853445a64a1..fe10e65c4bf0 100644 --- a/StandaloneMmPkg/Core/Dispatcher.c +++ b/StandaloneMmPkg/Core/Dispatcher.c @@ -810,13 +810,13 @@ FvHasBeenProcessed ( =20 **/ VOID -FvIsBeingProcesssed ( +FvIsBeingProcessed ( IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader ) { KNOWN_FWVOL *KnownFwVol; =20 - DEBUG ((DEBUG_INFO, "FvIsBeingProcesssed - 0x%08x\n", KnownFwVol)); + DEBUG ((DEBUG_INFO, "FvIsBeingProcessed - 0x%08x\n", KnownFwVol)); =20 KnownFwVol =3D AllocatePool (sizeof (KNOWN_FWVOL)); ASSERT (KnownFwVol !=3D NULL); diff --git a/StandaloneMmPkg/Core/FwVol.c b/StandaloneMmPkg/Core/FwVol.c index 99ecf4af4714..314329ea065a 100644 --- a/StandaloneMmPkg/Core/FwVol.c +++ b/StandaloneMmPkg/Core/FwVol.c @@ -38,7 +38,7 @@ FvHasBeenProcessed ( ); =20 VOID -FvIsBeingProcesssed ( +FvIsBeingProcessed ( IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader ); =20 @@ -86,7 +86,7 @@ Returns: return EFI_SUCCESS; } =20 - FvIsBeingProcesssed (FwVolHeader); + FvIsBeingProcessed (FwVolHeader); =20 // // First check for encapsulated compressed firmware volumes --=20 2.21.0