]> git.proxmox.com Git - mirror_edk2.git/commitdiff
MdeModulePkg/PiSmmCore: Fix typo in function name
authorPhilippe Mathieu-Daude <philmd@redhat.com>
Wed, 16 Oct 2019 13:25:31 +0000 (21:25 +0800)
committerHao A Wu <hao.a.wu@intel.com>
Thu, 17 Oct 2019 01:09:02 +0000 (09:09 +0800)
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>
MdeModulePkg/Core/PiSmmCore/Dispatcher.c

index 1c88c8fb17c57ea2177dac2a565fc4cb867095e9..e5a160ed0b921619ff0131b73cb0ea05f54291e4 100644 (file)
@@ -1101,7 +1101,7 @@ FvHasBeenProcessed (
 \r
 **/\r
 VOID\r
-FvIsBeingProcesssed (\r
+FvIsBeingProcessed (\r
   IN EFI_HANDLE  FvHandle\r
   )\r
 {\r
@@ -1294,7 +1294,7 @@ SmmDriverDispatchHandler (
     //\r
     // Since we are about to process this Fv mark it as processed.\r
     //\r
-    FvIsBeingProcesssed (FvHandle);\r
+    FvIsBeingProcessed (FvHandle);\r
 \r
     Status = gBS->HandleProtocol (FvHandle, &gEfiFirmwareVolume2ProtocolGuid, (VOID **)&Fv);\r
     if (EFI_ERROR (Status)) {\r