diff options
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/EnableInterrupts.nasm')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/EnableInterrupts.nasm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/EnableInterrupts.nasm b/MdePkg/Library/BaseLib/Ia32/EnableInterrupts.nasm index 85ea692954..ff8bbe45ca 100644 --- a/MdePkg/Library/BaseLib/Ia32/EnableInterrupts.nasm +++ b/MdePkg/Library/BaseLib/Ia32/EnableInterrupts.nasm @@ -1,6 +1,6 @@ ;------------------------------------------------------------------------------
;
-; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
+; Copyright (c) 2006 - 2016, 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
@@ -30,8 +30,8 @@ ; VOID
; );
;------------------------------------------------------------------------------
-global ASM_PFX(_EnableInterrupts)
-ASM_PFX(_EnableInterrupts):
+global ASM_PFX(EnableInterrupts)
+ASM_PFX(EnableInterrupts):
sti
ret
|