]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPlatformPkg/ArmRealViewEbPkg/Library/SysConfigArmRealViewEbLib/SysConfigArmRealViewEb.c
ArmPlatformPkg/ArmPlatformSysConfigLib: Removed dependency on Uefi.h since it is...
[mirror_edk2.git] / ArmPlatformPkg / ArmRealViewEbPkg / Library / SysConfigArmRealViewEbLib / SysConfigArmRealViewEb.c
index d23368452ac9c39b3afd520ef7f5b233a478d525..4b1a04d52e2d238ddb99ca04332801bcf3edb7b4 100644 (file)
@@ -1,6 +1,6 @@
-/** @file  SysCfgArmPlatform.c\r
+/** @file  SysConfigArmRealViewEb.c\r
 \r
-  Copyright (c) 2011, ARM Ltd. All rights reserved.<BR>\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
@@ -11,7 +11,7 @@
 \r
 **/\r
 \r
-#include <PiDxe.h>\r
+#include <Base.h>\r
 #include <Library/IoLib.h>\r
 #include <Library/DebugLib.h>\r
 \r
  *\r
  ****************************************************************************/\r
 \r
-EFI_STATUS\r
+RETURN_STATUS\r
 ArmPlatformSysConfigInitialize (\r
   VOID\r
   )\r
 {\r
-  return EFI_SUCCESS;\r
+  return RETURN_SUCCESS;\r
 }\r
 \r
-EFI_STATUS\r
+RETURN_STATUS\r
 ArmPlatformSysConfigGet (\r
   IN  SYS_CONFIG_FUNCTION   Function,\r
   OUT UINT32*               Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
+  RETURN_STATUS Status;\r
 \r
-  Status = EFI_SUCCESS;\r
+  Status = RETURN_SUCCESS;\r
 \r
   // Intercept some functions\r
   switch(Function) {\r
 \r
   default:\r
-    Status = EFI_UNSUPPORTED;\r
+    Status = RETURN_UNSUPPORTED;\r
   }\r
 \r
   return Status;\r
 }\r
 \r
-EFI_STATUS\r
+RETURN_STATUS\r
 ArmPlatformSysConfigSet (\r
   IN  SYS_CONFIG_FUNCTION   Function,\r
   IN  UINT32                Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
+  RETURN_STATUS Status;\r
 \r
-  Status = EFI_SUCCESS;\r
+  Status = RETURN_SUCCESS;\r
 \r
   // Intercept some functions\r
   switch(Function) {\r
 \r
   default:\r
-    Status = EFI_UNSUPPORTED;\r
+    Status = RETURN_UNSUPPORTED;\r
   }\r
 \r
   return Status;\r
 }\r
 \r
-EFI_STATUS\r
+RETURN_STATUS\r
 ArmPlatformSysConfigSetDevice (\r
   IN  SYS_CONFIG_FUNCTION   Function,\r
   IN  UINT32                Device,\r
   IN  UINT32                Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
+  RETURN_STATUS Status;\r
 \r
-  Status = EFI_SUCCESS;\r
+  Status = RETURN_SUCCESS;\r
 \r
   // Intercept some functions\r
   switch(Function) {\r
 \r
   default:\r
-    Status = EFI_UNSUPPORTED;\r
+    Status = RETURN_UNSUPPORTED;\r
   }\r
 \r
   return Status;\r