ArmPkg/ArmLib.h: Update 'ARM_MEMORY_REGION_DESCRIPTOR' to support 64bit addresses

Replaced 'UINT32' by 'UINTN'.



git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13055 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
oliviermartin 2012-02-28 17:18:35 +00:00
parent 65acd8e7b3
commit 3b73c91b65
1 changed files with 3 additions and 3 deletions

View File

@ -59,9 +59,9 @@ typedef enum {
#define IS_ARM_MEMORY_REGION_ATTRIBUTES_SECURE(attr) ((UINT32)(attr) & 1)
typedef struct {
UINT32 PhysicalBase;
UINT32 VirtualBase;
UINT32 Length;
UINTN PhysicalBase;
UINTN VirtualBase;
UINTN Length;
ARM_MEMORY_REGION_ATTRIBUTES Attributes;
} ARM_MEMORY_REGION_DESCRIPTOR;