]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/Ia32/FxRestore.S
Update the copyright notice format
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / FxRestore.S
index 631a3ef68ae0cfacd29e02f9be5830b787d78509..e1de9c9223704248cf3f1ca39c5e70f0b32cf299 100644 (file)
@@ -1,7 +1,7 @@
 #------------------------------------------------------------------------------\r
 #\r
-# Copyright (c) 2006, Intel Corporation\r
-# All rights reserved. This program and the accompanying materials\r
+# Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
+# This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
 # which accompanies this distribution.  The full text of the license may be found at\r
 # http://opensource.org/licenses/bsd-license.php\r
 #\r
 # Module Name:\r
 #\r
-#   FxRestore.Asm\r
+#   FxRestore.S\r
 #\r
 # Abstract:\r
 #\r
-#   AsmFxRestore function\r
+#   InternalX86FxRestore function\r
 #\r
 # Notes:\r
 #\r
 #------------------------------------------------------------------------------\r
 \r
-\r
-\r
-     \r
-     \r
+ASM_GLOBAL ASM_PFX(InternalX86FxRestore)\r
 \r
 #------------------------------------------------------------------------------\r
 # VOID\r
 # EFIAPI\r
-# AsmFxRestore (\r
+# InternalX86FxRestore (\r
 #   IN CONST IA32_FX_BUFFER *Buffer\r
 #   );\r
 #------------------------------------------------------------------------------\r
-.global _AsmFxRestore\r
-_AsmFxRestore: \r
-    movl    4(%esp),%eax\r
+ASM_PFX(InternalX86FxRestore):\r
+    movl    4(%esp), %eax               # Buffer must be 16-byte aligned\r
     fxrstor (%eax)\r
     ret\r
-\r
-\r
-\r