Remove the duplicated SmmLibNull, which has been moved into MdePkg.
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 6 Apr 2010 02:51:03 +0000 (02:51 +0000)
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 6 Apr 2010 02:51:03 +0000 (02:51 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10340 6f19259b-4bc3-4df7-8a09-765794883524

IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.c [deleted file]
IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.inf [deleted file]

diff --git a/IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.c b/IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.c
deleted file mode 100644 (file)
index 26d12e2..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-/** @file\r
-  NULL instance of SMM Library.\r
-\r
-  Copyright (c) 2009 - 2010, Intel Corporation<BR>\r
-  All rights reserved. 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
-**/\r
-\r
-#include <Base.h>\r
-#include <Library/SmmLib.h>\r
-\r
-/**\r
-  Triggers an SMI at boot time.  \r
-\r
-  This function triggers a software SMM interrupt at boot time.\r
-\r
-**/\r
-VOID\r
-EFIAPI\r
-TriggerBootServiceSoftwareSmi (\r
-  VOID\r
-  )\r
-{\r
-  return;\r
-}\r
-\r
-\r
-/**\r
-  Triggers an SMI at run time.  \r
-\r
-  This function triggers a software SMM interrupt at run time.\r
-\r
-**/\r
-VOID\r
-EFIAPI\r
-TriggerRuntimeSoftwareSmi (\r
-  VOID\r
-  )\r
-{\r
-  return;\r
-}\r
-\r
-\r
-\r
-/**\r
-  Test if a boot time software SMI happened.  \r
-\r
-  This function tests if a software SMM interrupt happened. If a software SMM interrupt happened and\r
-  it was triggered at boot time, it returns TRUE. Otherwise, it returns FALSE.\r
-\r
-  @retval TRUE   A software SMI triggered at boot time happened.\r
-  @retval FLASE  No software SMI happened or the software SMI was triggered at run time.\r
-\r
-**/\r
-BOOLEAN\r
-EFIAPI\r
-IsBootServiceSoftwareSmi (\r
-  VOID\r
-  )\r
-{\r
-  return FALSE;\r
-}\r
-\r
-\r
-/**\r
-  Test if a run time software SMI happened.  \r
-\r
-  This function tests if a software SMM interrupt happened. If a software SMM interrupt happened and\r
-  it was triggered at run time, it returns TRUE. Otherwise, it returns FALSE.\r
-\r
-  @retval TRUE   A software SMI triggered at run time happened.\r
-  @retval FLASE  No software SMI happened or the software SMI was triggered at boot time.\r
-\r
-**/\r
-BOOLEAN\r
-EFIAPI\r
-IsRuntimeSoftwareSmi (\r
-  VOID\r
-  )\r
-{\r
-  return FALSE;\r
-}\r
-\r
-/**\r
-  Clear APM SMI Status Bit; Set the EOS bit. \r
-  \r
-**/\r
-VOID\r
-EFIAPI\r
-ClearSmi (\r
-  VOID\r
-  )\r
-{\r
-  return;\r
-}\r
diff --git a/IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.inf b/IntelFrameworkPkg/Library/SmmLibNull/SmmLibNull.inf
deleted file mode 100644 (file)
index d8e563f..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-## @file\r
-# NULL instance of SMM Library.\r
-#\r
-#  Copyright (c) 2009 - 2010, Intel Corporation.\r
-#\r
-#  All rights reserved. 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
-#  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
-#\r
-##\r
-\r
-[Defines]\r
-  INF_VERSION                    = 0x00010005\r
-  BASE_NAME                      = SmmLibNull\r
-  FILE_GUID                      = DDADFC93-FBC5-4389-B20F-EC99E4A6AE52\r
-  MODULE_TYPE                    = BASE\r
-  VERSION_STRING                 = 1.0\r
-  LIBRARY_CLASS                  = SmmLib\r
-\r
-#\r
-# The following information is for reference only and not required by the build tools.\r
-#\r
-#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC\r
-#\r
-\r
-[Sources]\r
-  SmmLibNull.c\r
-  \r
-\r
-[Packages]\r
-  MdePkg/MdePkg.dec\r
-  IntelFrameworkPkg/IntelFrameworkPkg.dec\r