From d4fa02a89efdbebb1b9eeb33b31147080da0d0c3 Mon Sep 17 00:00:00 2001 From: Philippe Mathieu-Daude Date: Wed, 16 Oct 2019 21:25:31 +0800 Subject: 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 Reviewed-by: Hao A Wu Reviewed-by: Liming Gao Signed-off-by: Philippe Mathieu-Daude --- MdeModulePkg/Core/PiSmmCore/Dispatcher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'MdeModulePkg/Core') diff --git a/MdeModulePkg/Core/PiSmmCore/Dispatcher.c b/MdeModulePkg/Core/PiSmmCore/Dispatcher.c index 1c88c8fb17..e5a160ed0b 100644 --- a/MdeModulePkg/Core/PiSmmCore/Dispatcher.c +++ b/MdeModulePkg/Core/PiSmmCore/Dispatcher.c @@ -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)) { -- cgit v1.2.3