]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPlatformPkg/Library/PrePiHobListPointerLib/PrePiHobListPointer.c
ArmPlatformPkg: Rectify file modes
[mirror_edk2.git] / ArmPlatformPkg / Library / PrePiHobListPointerLib / PrePiHobListPointer.c
old mode 100755 (executable)
new mode 100644 (file)
index 8ec0808..23e366d
@@ -1,22 +1,21 @@
 /** @file\r
 *\r
 *  Copyright (c) 2011, ARM Limited. All rights reserved.\r
-*  \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
+*  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 <PiPei.h>\r
-#include <Library/ArmPlatformGlobalVariableLib.h>\r
+#include <Library/ArmLib.h>\r
 #include <Library/PrePiHobListPointerLib.h>\r
 #include <Library/DebugLib.h>\r
-#include <Library/PcdLib.h>\r
 \r
 /**\r
   Returns the pointer to the HOB list.\r
@@ -32,11 +31,7 @@ PrePeiGetHobList (
   VOID\r
   )\r
 {\r
-  VOID* HobList;\r
-\r
-  ArmPlatformGetGlobalVariable (PcdGet32 (PcdHobListPtrGlobalOffset), sizeof(VOID*), &HobList);\r
-\r
-  return HobList;\r
+  return (VOID *)ArmReadTpidrurw();\r
 }\r
 \r
 \r
@@ -45,7 +40,7 @@ PrePeiGetHobList (
   Updates the pointer to the HOB list.\r
 \r
   @param  HobList       Hob list pointer to store\r
-  \r
+\r
 **/\r
 EFI_STATUS\r
 EFIAPI\r
@@ -53,8 +48,7 @@ PrePeiSetHobList (
   IN  VOID      *HobList\r
   )\r
 {\r
-  ArmPlatformSetGlobalVariable (PcdGet32 (PcdHobListPtrGlobalOffset), sizeof(VOID*), &HobList);\r
+  ArmWriteTpidrurw((UINTN)HobList);\r
 \r
   return EFI_SUCCESS;\r
 }\r
-\r