mirror of https://github.com/acidanthera/audk.git
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@422 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
3547bb9f9f
commit
59b05fbba8
|
@ -42,10 +42,10 @@ typedef struct {
|
|||
// PPI definition
|
||||
//
|
||||
typedef struct {
|
||||
UINTN FirstEntry;
|
||||
UINTN LastEntry;
|
||||
EFI_PHYSICAL_ADDRESS Address;
|
||||
UINTN Length;
|
||||
UINT32 FirstEntry;
|
||||
UINT32 LastEntry;
|
||||
EFI_PHYSICAL_ADDRESS Address;
|
||||
UINT32 Length;
|
||||
} PEI_STATUS_CODE_MEMORY_PPI;
|
||||
|
||||
extern EFI_GUID gPeiStatusCodeMemoryPpiGuid;
|
||||
|
|
|
@ -69,8 +69,8 @@ Returns:
|
|||
EFI_PEI_PROGRESS_CODE_PPI *ReportStatusCodePpi;
|
||||
EFI_PHYSICAL_ADDRESS Buffer;
|
||||
VOID *StartPointer;
|
||||
UINTN Length;
|
||||
UINTN LastEntry;
|
||||
UINT32 Length;
|
||||
UINT32 LastEntry;
|
||||
EFI_PEI_PPI_DESCRIPTOR *ReportStatusCodeDescriptor;
|
||||
EFI_PEI_PPI_DESCRIPTOR *StatusCodeMemoryDescriptor;
|
||||
|
||||
|
@ -327,7 +327,7 @@ Returns:
|
|||
EFI_STATUS Status;
|
||||
PEI_STATUS_CODE_MEMORY_PPI *StatusCodeMemoryPpi;
|
||||
EFI_STATUS_CODE_ENTRY *CurrentEntry;
|
||||
UINTN LastEntry;
|
||||
UINT32 LastEntry;
|
||||
MEMORY_STATUS_CODE_INSTANCE *PrivateData;
|
||||
EFI_PEI_PPI_DESCRIPTOR *StatusCodeMemoryDescriptor;
|
||||
EFI_PEI_SERVICES **PeiServices;
|
||||
|
|
|
@ -55,7 +55,7 @@ Returns:
|
|||
--*/
|
||||
{
|
||||
EFI_STATUS_CODE_ENTRY *CurrentEntry;
|
||||
UINTN MaxEntry;
|
||||
UINT32 MaxEntry;
|
||||
|
||||
//
|
||||
// We don't care to log debug codes.
|
||||
|
|
Loading…
Reference in New Issue