]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPlatformPkg/ArmRealViewEbPkg/Library/SysConfigArmRealViewEbLib/SysConfigArmRealViewEb.c
ArmPlatformPkg: Introduced ArmPlatformSysConfigLib NULL library
[mirror_edk2.git] / ArmPlatformPkg / ArmRealViewEbPkg / Library / SysConfigArmRealViewEbLib / SysConfigArmRealViewEb.c
diff --git a/ArmPlatformPkg/ArmRealViewEbPkg/Library/SysConfigArmRealViewEbLib/SysConfigArmRealViewEb.c b/ArmPlatformPkg/ArmRealViewEbPkg/Library/SysConfigArmRealViewEbLib/SysConfigArmRealViewEb.c
deleted file mode 100644 (file)
index 4b1a04d..0000000
+++ /dev/null
@@ -1,95 +0,0 @@
-/** @file  SysConfigArmRealViewEb.c\r
-\r
-  Copyright (c) 2011-2012, ARM Ltd. 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
-**/\r
-\r
-#include <Base.h>\r
-#include <Library/IoLib.h>\r
-#include <Library/DebugLib.h>\r
-\r
-#include <Library/ArmPlatformSysConfigLib.h>\r
-#include <ArmPlatform.h>\r
-\r
-/****************************************************************************\r
- *\r
- *  This file makes it easier to access the System Configuration Registers\r
- *  in the ARM Versatile Express motherboard.\r
- *\r
- ****************************************************************************/\r
-\r
-RETURN_STATUS\r
-ArmPlatformSysConfigInitialize (\r
-  VOID\r
-  )\r
-{\r
-  return RETURN_SUCCESS;\r
-}\r
-\r
-RETURN_STATUS\r
-ArmPlatformSysConfigGet (\r
-  IN  SYS_CONFIG_FUNCTION   Function,\r
-  OUT UINT32*               Value\r
-  )\r
-{\r
-  RETURN_STATUS Status;\r
-\r
-  Status = RETURN_SUCCESS;\r
-\r
-  // Intercept some functions\r
-  switch(Function) {\r
-\r
-  default:\r
-    Status = RETURN_UNSUPPORTED;\r
-  }\r
-\r
-  return Status;\r
-}\r
-\r
-RETURN_STATUS\r
-ArmPlatformSysConfigSet (\r
-  IN  SYS_CONFIG_FUNCTION   Function,\r
-  IN  UINT32                Value\r
-  )\r
-{\r
-  RETURN_STATUS Status;\r
-\r
-  Status = RETURN_SUCCESS;\r
-\r
-  // Intercept some functions\r
-  switch(Function) {\r
-\r
-  default:\r
-    Status = RETURN_UNSUPPORTED;\r
-  }\r
-\r
-  return Status;\r
-}\r
-\r
-RETURN_STATUS\r
-ArmPlatformSysConfigSetDevice (\r
-  IN  SYS_CONFIG_FUNCTION   Function,\r
-  IN  UINT32                Device,\r
-  IN  UINT32                Value\r
-  )\r
-{\r
-  RETURN_STATUS Status;\r
-\r
-  Status = RETURN_SUCCESS;\r
-\r
-  // Intercept some functions\r
-  switch(Function) {\r
-\r
-  default:\r
-    Status = RETURN_UNSUPPORTED;\r
-  }\r
-\r
-  return Status;\r
-}\r