]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/Ia32/EnablePaging32.S
Update the Guid Value of Ext SCSI Pass Thru Protocol
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / EnablePaging32.S
index 6f9befcb4a391f084416e74371f8125bf5fd2c86..df5d67cfac1457413d109611b6f7ce916fed94c2 100644 (file)
 #\r
 # Abstract:\r
 #\r
-#   AsmEnablePaging32 function\r
+#   InternalX86EnablePaging32 function\r
 #\r
 # Notes:\r
 #\r
 #------------------------------------------------------------------------------\r
 \r
-\r
-\r
-     \r
+.globl ASM_PFX(InternalX86EnablePaging32)\r
 \r
 #------------------------------------------------------------------------------\r
 # VOID\r
 # EFIAPI\r
-# AsmEnablePaging32 (\r
+# InternalX86EnablePaging32 (\r
 #   IN      SWITCH_STACK_ENTRY_POINT  EntryPoint,\r
 #   IN      VOID                      *Context1,    OPTIONAL\r
 #   IN      VOID                      *Context2,    OPTIONAL\r
 #   IN      VOID                      *NewStack\r
 #   );\r
 #------------------------------------------------------------------------------\r
-.global _AsmEnablePaging32\r
-_AsmEnablePaging32: \r
-    movl    4(%esp),%ebx\r
-    movl    8(%esp),%ecx\r
-    movl    12(%esp),%edx\r
+ASM_PFX(InternalX86EnablePaging32):\r
+    movl    4(%esp), %ebx\r
+    movl    8(%esp), %ecx\r
+    movl    12(%esp), %edx\r
     pushfl\r
-    popl    %edi\r
+    pop     %edi\r
     cli\r
     movl    %cr0, %eax\r
-    btsl    $31,%eax\r
-    movl    16(%esp),%esp\r
+    btsl    $31, %eax\r
+    movl    16(%esp), %esp\r
     movl    %eax, %cr0\r
-    pushl   %edi\r
+    push    %edi\r
     popfl\r
-    pushl   %edx\r
-    pushl   %ecx\r
+    push    %edx\r
+    push    %ecx\r
     call    *%ebx\r
     jmp     .\r
-\r
-\r
-\r