ArmPkg: Fix warnings raised by ARMGCC
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11829 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -122,7 +122,7 @@ InitializeMemory (
|
||||
// Ensure PcdSystemMemorySize has been set
|
||||
ASSERT (FixedPcdGet32 (PcdSystemMemorySize) != 0);
|
||||
|
||||
SystemMemoryTop = FixedPcdGet32 (PcdSystemMemoryBase) + FixedPcdGet32 (PcdSystemMemorySize);
|
||||
SystemMemoryTop = (UINTN)FixedPcdGet32 (PcdSystemMemoryBase) + (UINTN)FixedPcdGet32 (PcdSystemMemorySize);
|
||||
|
||||
//
|
||||
// Initialize the System Memory (DRAM)
|
||||
|
Reference in New Issue
Block a user