From 6c9cb4f420ad962c2e13536a497ae32212f71fc8 Mon Sep 17 00:00:00 2001 From: Savva Mitrofanov Date: Wed, 5 Apr 2023 12:56:43 +0600 Subject: [PATCH] EmbeddedPkg/PrePiMemoryAllocationLib: Correct missing function argument Signed-off-by: Savva Mitrofanov --- .../Library/PrePiMemoryAllocationLib/MemoryAllocationLib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EmbeddedPkg/Library/PrePiMemoryAllocationLib/MemoryAllocationLib.c b/EmbeddedPkg/Library/PrePiMemoryAllocationLib/MemoryAllocationLib.c index 8f07f29e36..253ace4e54 100644 --- a/EmbeddedPkg/Library/PrePiMemoryAllocationLib/MemoryAllocationLib.c +++ b/EmbeddedPkg/Library/PrePiMemoryAllocationLib/MemoryAllocationLib.c @@ -110,7 +110,8 @@ PhaseFreePages ( VOID * EFIAPI PhaseAllocatePool ( - IN UINTN AllocationSize + IN EFI_MEMORY_TYPE MemoryType, + IN UINTN AllocationSize ) { EFI_HOB_MEMORY_POOL *Hob;