diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/Mwait.S')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/Mwait.S | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/Mwait.S b/MdePkg/Library/BaseLib/Ia32/Mwait.S index 7e04453352..1aad7cb357 100644 --- a/MdePkg/Library/BaseLib/Ia32/Mwait.S +++ b/MdePkg/Library/BaseLib/Ia32/Mwait.S @@ -21,9 +21,7 @@ #
#------------------------------------------------------------------------------
-
-
-
+.global _AsmMwait
#------------------------------------------------------------------------------
# UINT64
@@ -33,12 +31,8 @@ # IN UINTN Ecx
# );
#------------------------------------------------------------------------------
-.global _AsmMwait
-_AsmMwait:
- movl 4(%esp),%eax
- movl 8(%esp),%ecx
- mwait %eax,%ecx
+_AsmMwait:
+ movl 4(%esp), %eax
+ movl 8(%esp), %ecx
+ mwait %eax, %ecx
ret
-
-
-
|