StandaloneMmPkg/Core: Fix typo in function name

An extra 's' slipped into the FvIsBeingProcessed function
name. Drop it to fix the typo.

Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
This commit is contained in:
Philippe Mathieu-Daude 2019-10-16 21:25:32 +08:00 committed by Hao A Wu
parent d4fa02a89e
commit 81e9eca7a4
2 changed files with 4 additions and 4 deletions

View File

@ -810,13 +810,13 @@ FvHasBeenProcessed (
**/
VOID
FvIsBeingProcesssed (
FvIsBeingProcessed (
IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader
)
{
KNOWN_FWVOL *KnownFwVol;
DEBUG ((DEBUG_INFO, "FvIsBeingProcesssed - 0x%08x\n", KnownFwVol));
DEBUG ((DEBUG_INFO, "FvIsBeingProcessed - 0x%08x\n", KnownFwVol));
KnownFwVol = AllocatePool (sizeof (KNOWN_FWVOL));
ASSERT (KnownFwVol != NULL);

View File

@ -38,7 +38,7 @@ FvHasBeenProcessed (
);
VOID
FvIsBeingProcesssed (
FvIsBeingProcessed (
IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader
);
@ -86,7 +86,7 @@ Returns:
return EFI_SUCCESS;
}
FvIsBeingProcesssed (FwVolHeader);
FvIsBeingProcessed (FwVolHeader);
//
// First check for encapsulated compressed firmware volumes