diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2024-09-12 11:22:00 +0200 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-09-13 00:23:13 +0000 |
commit | bec02ea9de6ae8aec4a645b56424d7be999fe23f (patch) | |
tree | 89a865a8b91d4795ebb3ec23ec6bc1efd263f1fc /MdePkg | |
parent | bb403511d412959aaa3733a8235257190d63b3ad (diff) | |
download | edk2-bec02ea9de6ae8aec4a645b56424d7be999fe23f.tar.gz edk2-bec02ea9de6ae8aec4a645b56424d7be999fe23f.tar.bz2 edk2-bec02ea9de6ae8aec4a645b56424d7be999fe23f.zip |
MdePkg/ArmLib: Drop routines that maintain the entire D-cache
Cache maintenance on the D-cache hierarchy as a whole is not supported
by the ARM architecture, so drop the routines from ArmLib that pretend
to implement it.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/Library/ArmLib.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/MdePkg/Include/Library/ArmLib.h b/MdePkg/Include/Library/ArmLib.h index 6a1503a7e5..087cddfb76 100644 --- a/MdePkg/Include/Library/ArmLib.h +++ b/MdePkg/Include/Library/ArmLib.h @@ -182,24 +182,6 @@ ArmIsMpCore ( VOID
EFIAPI
-ArmInvalidateDataCache (
- VOID
- );
-
-VOID
-EFIAPI
-ArmCleanInvalidateDataCache (
- VOID
- );
-
-VOID
-EFIAPI
-ArmCleanDataCache (
- VOID
- );
-
-VOID
-EFIAPI
ArmInvalidateInstructionCache (
VOID
);
|