Use PVOID instead of HARDWARE_PTE to allow different variable types for different architectures

This commit is contained in:
2022-12-07 18:54:21 +01:00
parent 93fa2aed67
commit 43c16d054d
3 changed files with 8 additions and 8 deletions

View File

@@ -36,7 +36,7 @@ BlMapVirtualMemory(IN PLIST_ENTRY MemoryMappings,
IN UINT_PTR VirtualAddress,
IN UINT_PTR PhysicalAddress,
IN UINT NumberOfPages,
IN OUT PHARDWARE_PTE *PtePointer)
IN OUT PVOID *PtePointer)
{
return STATUS_EFI_SUCCESS;
}