summaryrefslogtreecommitdiff
path: root/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/CpuFlushCache.asm
diff options
context:
space:
mode:
Diffstat (limited to 'EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/CpuFlushCache.asm')
-rw-r--r--EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/CpuFlushCache.asm62
1 files changed, 0 insertions, 62 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/CpuFlushCache.asm b/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/CpuFlushCache.asm
deleted file mode 100644
index 0b0bb7654e..0000000000
--- a/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/CpuFlushCache.asm
+++ /dev/null
@@ -1,62 +0,0 @@
-;/*++
-;
-;Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
-;This program and the accompanying materials
-;are licensed and made available under the terms and conditions of the BSD License
-;which accompanies this distribution. The full text of the license may be found at
-;http://opensource.org/licenses/bsd-license.php
- ;
-;THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-;WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-;
-;Module Name:
-;
- ;CpuFlushCache.c
-;
-;Abstract:
-;
- ;Cpu Flush Cache Function.
-;
-;--*/
-;---------------------------------------------------------------------------
- .586p
- .model flat,C
- .code
-
-;---------------------------------------------------------------------------
-;
-;//
-;// Cache Flush Routine.
-;//
-;EFI_STATUS
-;EfiCpuFlushCache (
- ;IN EFI_PHYSICAL_ADDRESS Start,
-; IN UINT64 Length
- ;)
-;/*++
-;
-;Routine Description:
-;
- ;Flush cache with specified range.
-;
-;Arguments:
-;
- ;Start - Start address
-; Length - Length in bytes
-;
-;Returns:
-;
- ;Status code
-;
- ;EFI_SUCCESS - success
-;
-;--*/
-EfiCpuFlushCache PROC
- wbinvd
- xor eax, eax
- ret
-EfiCpuFlushCache ENDP
-
- END
-
- \ No newline at end of file