summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.S
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/FlushCacheLine.S')
-rw-r--r--MdePkg/Library/BaseLib/Ia32/FlushCacheLine.S13
1 files changed, 3 insertions, 10 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.S b/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.S
index c14bd11d68..a1c62755f4 100644
--- a/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.S
+++ b/MdePkg/Library/BaseLib/Ia32/FlushCacheLine.S
@@ -21,10 +21,7 @@
#
#------------------------------------------------------------------------------
-
-
-
-
+.global _AsmFlushCacheLine
#------------------------------------------------------------------------------
# VOID
@@ -33,11 +30,7 @@
# IN VOID *LinearAddress
# );
#------------------------------------------------------------------------------
-.global _AsmFlushCacheLine
-_AsmFlushCacheLine:
- movl 4(%esp),%eax
+_AsmFlushCacheLine:
+ movl 4(%esp), %eax
clflush (%eax)
ret
-
-
-