mirror of https://github.com/acidanthera/audk.git
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:
parent
d4fa02a89e
commit
81e9eca7a4
|
@ -810,13 +810,13 @@ FvHasBeenProcessed (
|
||||||
|
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
FvIsBeingProcesssed (
|
FvIsBeingProcessed (
|
||||||
IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader
|
IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
KNOWN_FWVOL *KnownFwVol;
|
KNOWN_FWVOL *KnownFwVol;
|
||||||
|
|
||||||
DEBUG ((DEBUG_INFO, "FvIsBeingProcesssed - 0x%08x\n", KnownFwVol));
|
DEBUG ((DEBUG_INFO, "FvIsBeingProcessed - 0x%08x\n", KnownFwVol));
|
||||||
|
|
||||||
KnownFwVol = AllocatePool (sizeof (KNOWN_FWVOL));
|
KnownFwVol = AllocatePool (sizeof (KNOWN_FWVOL));
|
||||||
ASSERT (KnownFwVol != NULL);
|
ASSERT (KnownFwVol != NULL);
|
||||||
|
|
|
@ -38,7 +38,7 @@ FvHasBeenProcessed (
|
||||||
);
|
);
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
FvIsBeingProcesssed (
|
FvIsBeingProcessed (
|
||||||
IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader
|
IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ Returns:
|
||||||
return EFI_SUCCESS;
|
return EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
FvIsBeingProcesssed (FwVolHeader);
|
FvIsBeingProcessed (FwVolHeader);
|
||||||
|
|
||||||
//
|
//
|
||||||
// First check for encapsulated compressed firmware volumes
|
// First check for encapsulated compressed firmware volumes
|
||||||
|
|
Loading…
Reference in New Issue