diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2017-11-30 14:00:28 +0000 |
---|---|---|
committer | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2017-11-30 16:08:33 +0000 |
commit | ef120b7d639b78c7942e07a2a5dadc3d657fcfd7 (patch) | |
tree | 11a2bd5744ff2a0b68a2346d5dbb114949e8515c /BeagleBoardPkg/Library | |
parent | d4708314621458e6b4abb58f1629b0f753b17b66 (diff) | |
download | edk2-ef120b7d639b78c7942e07a2a5dadc3d657fcfd7.tar.gz |
ArmPlatformPkg: remove ArmPlatformInitializeSystemMemory
The function ArmPlatformInitializeSystemMemory() is defined by
ArmPlatformLib, but is only ever called when using the PrePeiCore
flavor of the startup code. Also, none of the remaining upstream
platforms actually implement anything in that function in the first
place. So let's just remove it altogether.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Diffstat (limited to 'BeagleBoardPkg/Library')
-rw-r--r-- | BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoard.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoard.c b/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoard.c index 3b02440048..d8eec72b7c 100644 --- a/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoard.c +++ b/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoard.c @@ -101,20 +101,6 @@ ArmPlatformInitialize ( return RETURN_SUCCESS;
}
-/**
- Initialize the system (or sometimes called permanent) memory
-
- This memory is generally represented by the DRAM.
-
-**/
-VOID
-ArmPlatformInitializeSystemMemory (
- VOID
- )
-{
- // We do not need to initialize the System Memory on RTSM
-}
-
VOID
ArmPlatformGetPlatformPpiList (
OUT UINTN *PpiListSize,
|