diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-02-28 17:18:35 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-02-28 17:18:35 +0000 |
commit | 3b73c91b65a2da28ea2a836a7e4b10535d93f141 (patch) | |
tree | 1814945431cbe022271c29eebc55a8a4a5d8f709 /ArmPkg | |
parent | 65acd8e7b3f2690f3e927e012fbd21f6bcfb17b2 (diff) | |
download | edk2-3b73c91b65a2da28ea2a836a7e4b10535d93f141.tar.gz edk2-3b73c91b65a2da28ea2a836a7e4b10535d93f141.tar.bz2 edk2-3b73c91b65a2da28ea2a836a7e4b10535d93f141.zip |
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
Diffstat (limited to 'ArmPkg')
-rw-r--r-- | ArmPkg/Include/Library/ArmLib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ArmPkg/Include/Library/ArmLib.h b/ArmPkg/Include/Library/ArmLib.h index 32886aaf49..cacd25d756 100644 --- a/ArmPkg/Include/Library/ArmLib.h +++ b/ArmPkg/Include/Library/ArmLib.h @@ -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; |