mirror of https://github.com/acidanthera/audk.git
MdeModulePkg DxeCore: 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
23ab8df01a
commit
b0570b48f3
|
@ -696,7 +696,7 @@ FvHasBeenProcessed (
|
|||
|
||||
**/
|
||||
KNOWN_HANDLE *
|
||||
FvIsBeingProcesssed (
|
||||
FvIsBeingProcessed (
|
||||
IN EFI_HANDLE FvHandle
|
||||
)
|
||||
{
|
||||
|
@ -1253,7 +1253,7 @@ CoreFwVolEventProtocolNotify (
|
|||
//
|
||||
// Since we are about to process this Fv mark it as processed.
|
||||
//
|
||||
KnownHandle = FvIsBeingProcesssed (FvHandle);
|
||||
KnownHandle = FvIsBeingProcessed (FvHandle);
|
||||
if (KnownHandle == NULL) {
|
||||
//
|
||||
// The FV with the same FV name guid has already been processed.
|
||||
|
|
Loading…
Reference in New Issue