mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/PiSmmCore: 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: Hao A Wu <hao.a.wu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
This commit is contained in:
parent
b0570b48f3
commit
d4fa02a89e
|
@ -1101,7 +1101,7 @@ FvHasBeenProcessed (
|
|||
|
||||
**/
|
||||
VOID
|
||||
FvIsBeingProcesssed (
|
||||
FvIsBeingProcessed (
|
||||
IN EFI_HANDLE FvHandle
|
||||
)
|
||||
{
|
||||
|
@ -1294,7 +1294,7 @@ SmmDriverDispatchHandler (
|
|||
//
|
||||
// Since we are about to process this Fv mark it as processed.
|
||||
//
|
||||
FvIsBeingProcesssed (FvHandle);
|
||||
FvIsBeingProcessed (FvHandle);
|
||||
|
||||
Status = gBS->HandleProtocol (FvHandle, &gEfiFirmwareVolume2ProtocolGuid, (VOID **)&Fv);
|
||||
if (EFI_ERROR (Status)) {
|
||||
|
|
Loading…
Reference in New Issue