]> git.proxmox.com Git - mirror_edk2.git/commitdiff
IntelFsp2Pkg BaseFspDebugLibSerialPort: Remove MASM/GAS files
authorLiming Gao <liming.gao@intel.com>
Fri, 8 Jul 2016 14:49:21 +0000 (22:49 +0800)
committerLiming Gao <liming.gao@intel.com>
Mon, 11 Jul 2016 05:53:51 +0000 (13:53 +0800)
Keep NASM file only for new added modules.

Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Giri Mudusuru <giri.p.mudusuru@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Giri P Mudusuru <giri.p.mudusuru@intel.com>
IntelFsp2Pkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf
IntelFsp2Pkg/Library/BaseFspDebugLibSerialPort/Ia32/FspDebug.asm [deleted file]
IntelFsp2Pkg/Library/BaseFspDebugLibSerialPort/Ia32/FspDebug.s [deleted file]

index 33e72a65a9588e77a1b7eafd32294f7966b3bd3a..49adfd8c820da7c23f7b18ad96f685eb015ac423 100644 (file)
@@ -29,8 +29,6 @@
 \r
 [Sources.Ia32]\r
   Ia32/FspDebug.nasm\r
-  Ia32/FspDebug.asm\r
-  Ia32/FspDebug.s\r
 \r
 [Packages]\r
   MdePkg/MdePkg.dec\r
diff --git a/IntelFsp2Pkg/Library/BaseFspDebugLibSerialPort/Ia32/FspDebug.asm b/IntelFsp2Pkg/Library/BaseFspDebugLibSerialPort/Ia32/FspDebug.asm
deleted file mode 100644 (file)
index 8ac18ec..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-;------------------------------------------------------------------------------\r
-;\r
-; Copyright (c) 2014, 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
-; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-;\r
-; Abstract:\r
-;\r
-;   FSP Debug functions\r
-;\r
-;------------------------------------------------------------------------------\r
-\r
-    .386\r
-    .model  flat,C\r
-    .code\r
-\r
-;------------------------------------------------------------------------------\r
-; UINT32 *\r
-; EFIAPI\r
-; GetStackFramePointer (\r
-;   VOID\r
-;   );\r
-;------------------------------------------------------------------------------\r
-GetStackFramePointer  PROC  PUBLIC\r
-    mov     eax, ebp\r
-    ret\r
-GetStackFramePointer  ENDP\r
-\r
-    END\r
diff --git a/IntelFsp2Pkg/Library/BaseFspDebugLibSerialPort/Ia32/FspDebug.s b/IntelFsp2Pkg/Library/BaseFspDebugLibSerialPort/Ia32/FspDebug.s
deleted file mode 100644 (file)
index 0f8475f..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#------------------------------------------------------------------------------\r
-#\r
-# Copyright (c) 2014, 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
-# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-#\r
-# Abstract:\r
-#\r
-#   FSP Debug functions\r
-#\r
-#------------------------------------------------------------------------------\r
-\r
-#------------------------------------------------------------------------------\r
-# UINT32 *\r
-# EFIAPI\r
-# GetStackFramePointer (\r
-#   VOID\r
-#   )\r
-#------------------------------------------------------------------------------\r
-ASM_GLOBAL ASM_PFX(GetStackFramePointer)\r
-ASM_PFX(GetStackFramePointer):\r
-    mov    %ebp, %eax\r
-    ret\r
-\r
-\r