]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmulatorPkg/Library/SecPeiServicesLib/PeiServicesLib.c
EmulatorPkg: Remove all trailing whitespace
[mirror_edk2.git] / EmulatorPkg / Library / SecPeiServicesLib / PeiServicesLib.c
index bdbf6875c9e23c7b5e8574953650be1d6c4168e8..f9ae3e64ed425cb20ac18bf4e5be5c4085e8c66f 100644 (file)
@@ -87,8 +87,8 @@ PeiServicesReInstallPpi (
 /**\r
   This service enables PEIMs to discover a given instance of an interface.\r
 \r
-  So this is, well a hack, so we can reuse the same libraries as the PEI Core \r
-  for XIP modules.... \r
+  So this is, well a hack, so we can reuse the same libraries as the PEI Core\r
+  for XIP modules....\r
 \r
   @param  Guid                  A pointer to the GUID whose corresponding interface needs to be\r
                                 found.\r
@@ -110,11 +110,11 @@ PeiServicesLocatePpi (
   )\r
 {\r
   EFI_PEI_PPI_DESCRIPTOR *PpiList;\r
-   \r
+\r
   if (Instance != 0) {\r
     return EFI_NOT_FOUND;\r
   }\r
-  \r
+\r
   for (PpiList = EMU_MAGIC_PAGE()->PpiList; ; PpiList++) {\r
     if (CompareGuid (PpiList->Guid, Guid)) {\r
       if (PpiDescriptor != NULL) {\r
@@ -125,13 +125,13 @@ PeiServicesLocatePpi (
       }\r
       return EFI_SUCCESS;\r
     }\r
-    \r
+\r
     if ((PpiList->Flags & EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST) == EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST) {\r
       break;\r
     }\r
-  } \r
-  \r
-  \r
+  }\r
+\r
+\r
   return EFI_NOT_FOUND;\r
 }\r
 \r
@@ -139,7 +139,7 @@ PeiServicesLocatePpi (
   This service enables PEIMs to register a given service to be invoked when another service is\r
   installed or reinstalled.\r
 \r
-  @param  NotifyList            A pointer to the list of notification interfaces \r
+  @param  NotifyList            A pointer to the list of notification interfaces\r
                                 that the caller shall install.\r
 \r
   @retval EFI_SUCCESS           The interface was successfully installed.\r
@@ -200,9 +200,9 @@ PeiServicesSetBootMode (
 /**\r
   This service enables a PEIM to ascertain the address of the list of HOBs in memory.\r
 \r
-  @param  HobList               A pointer to the list of HOBs that the PEI Foundation \r
+  @param  HobList               A pointer to the list of HOBs that the PEI Foundation\r
                                 will initialize.\r
-  \r
+\r
   @retval EFI_SUCCESS           The list was successfully returned.\r
   @retval EFI_NOT_AVAILABLE_YET The HOB list is not yet published.\r
 \r
@@ -222,7 +222,7 @@ PeiServicesGetHobList (
 \r
   @param  Type                  The type of HOB to be installed.\r
   @param  Length                The length of the HOB to be added.\r
-  @param  Hob                   The address of a pointer that will contain the \r
+  @param  Hob                   The address of a pointer that will contain the\r
                                 HOB header.\r
 \r
   @retval EFI_SUCCESS           The HOB was successfully created.\r
@@ -244,7 +244,7 @@ PeiServicesCreateHob (
 /**\r
   This service enables PEIMs to discover additional firmware volumes.\r
 \r
-  @param  Instance              This instance of the firmware volume to find.  The \r
+  @param  Instance              This instance of the firmware volume to find.  The\r
                                 value 0 is the Boot Firmware Volume (BFV).\r
   @param  VolumeHandle          Handle of the firmware volume header of the volume\r
                                 to return.\r
@@ -269,9 +269,9 @@ PeiServicesFfsFindNextVolume (
   This service enables PEIMs to discover additional firmware files.\r
 \r
   @param  SearchType            A filter to find files only of this type.\r
-  @param  VolumeHandle          The pointer to the firmware volume header of the \r
-                                volume to search. This parameter must point to a \r
-                                valid FFS volume. \r
+  @param  VolumeHandle          The pointer to the firmware volume header of the\r
+                                volume to search. This parameter must point to a\r
+                                valid FFS volume.\r
   @param  FileHandle            Handle of the current file from which to begin searching.\r
 \r
   @retval EFI_SUCCESS           The file was found.\r
@@ -294,7 +294,7 @@ PeiServicesFfsFindNextFile (
   This service enables PEIMs to discover sections of a given type within a valid FFS file.\r
 \r
   @param  SectionType           The value of the section type to find.\r
-  @param  FileHandle            A pointer to the file header that contains the set \r
+  @param  FileHandle            A pointer to the file header that contains the set\r
                                 of sections to be searched.\r
   @param  SectionData           A pointer to the discovered section, if successful.\r
 \r
@@ -366,7 +366,7 @@ PeiServicesAllocatePages (
   This service allocates memory from the Hand-Off Block (HOB) heap.\r
 \r
   @param  Size                  The number of bytes to allocate from the pool.\r
-  @param  Buffer                If the call succeeds, a pointer to a pointer to \r
+  @param  Buffer                If the call succeeds, a pointer to a pointer to\r
                                 the allocate buffer; otherwise, undefined.\r
 \r
   @retval EFI_SUCCESS           The allocation was successful\r
@@ -402,13 +402,13 @@ PeiServicesResetSystem (
 }\r
 \r
 /**\r
-  This service is a wrapper for the PEI Service RegisterForShadow(), except the \r
-  pointer to the PEI Services Table has been removed.  See the Platform \r
-  Initialization Pre-EFI Initialization Core Interface Specification for details. \r
+  This service is a wrapper for the PEI Service RegisterForShadow(), except the\r
+  pointer to the PEI Services Table has been removed.  See the Platform\r
+  Initialization Pre-EFI Initialization Core Interface Specification for details.\r
 \r
   @param FileHandle             PEIM's file handle. Must be the currently\r
                                 executing PEIM.\r
-  \r
+\r
   @retval EFI_SUCCESS           The PEIM was successfully registered for\r
                                 shadowing.\r
 \r
@@ -429,9 +429,9 @@ PeiServicesRegisterForShadow (
 }\r
 \r
 /**\r
-  This service is a wrapper for the PEI Service FfsGetFileInfo(), except the pointer to the PEI Services \r
-  Table has been removed.  See the Platform Initialization Pre-EFI Initialization Core Interface \r
-  Specification for details. \r
+  This service is a wrapper for the PEI Service FfsGetFileInfo(), except the pointer to the PEI Services\r
+  Table has been removed.  See the Platform Initialization Pre-EFI Initialization Core Interface\r
+  Specification for details.\r
 \r
   @param FileHandle              The handle of the file.\r
 \r
@@ -439,15 +439,15 @@ PeiServicesRegisterForShadow (
                                   information.\r
 \r
   @retval EFI_SUCCESS             File information returned.\r
-  \r
+\r
   @retval EFI_INVALID_PARAMETER   If FileHandle does not\r
                                   represent a valid file.\r
-  \r
+\r
   @retval EFI_INVALID_PARAMETER   FileInfo is NULL.\r
-  \r
+\r
 **/\r
 EFI_STATUS\r
-EFIAPI \r
+EFIAPI\r
 PeiServicesFfsGetFileInfo (\r
   IN CONST  EFI_PEI_FILE_HANDLE   FileHandle,\r
   OUT EFI_FV_FILE_INFO            *FileInfo\r
@@ -459,9 +459,9 @@ PeiServicesFfsGetFileInfo (
 \r
 \r
 /**\r
-  This service is a wrapper for the PEI Service FfsFindByName(), except the pointer to the PEI Services \r
-  Table has been removed.  See the Platform Initialization Pre-EFI Initialization Core Interface \r
-  Specification for details. \r
+  This service is a wrapper for the PEI Service FfsFindByName(), except the pointer to the PEI Services\r
+  Table has been removed.  See the Platform Initialization Pre-EFI Initialization Core Interface\r
+  Specification for details.\r
 \r
   @param FileName                 A pointer to the name of the file to\r
                                   find within the firmware volume.\r
@@ -469,7 +469,7 @@ PeiServicesFfsGetFileInfo (
   @param VolumeHandle             The firmware volume to search FileHandle\r
                                   Upon exit, points to the found file's\r
                                   handle or NULL if it could not be found.\r
-  @param FileHandle               The pointer to found file handle \r
+  @param FileHandle               The pointer to found file handle\r
 \r
   @retval EFI_SUCCESS             File was found.\r
 \r
@@ -493,9 +493,9 @@ PeiServicesFfsFindFileByName (
 \r
 \r
 /**\r
-  This service is a wrapper for the PEI Service FfsGetVolumeInfo(), except the pointer to the PEI Services \r
-  Table has been removed.  See the Platform Initialization Pre-EFI Initialization Core Interface \r
-  Specification for details. \r
+  This service is a wrapper for the PEI Service FfsGetVolumeInfo(), except the pointer to the PEI Services\r
+  Table has been removed.  See the Platform Initialization Pre-EFI Initialization Core Interface\r
+  Specification for details.\r
 \r
   @param VolumeHandle             Handle of the volume.\r
 \r
@@ -503,10 +503,10 @@ PeiServicesFfsFindFileByName (
                                   information.\r
 \r
   @retval EFI_SUCCESS             File information returned.\r
-  \r
+\r
   @retval EFI_INVALID_PARAMETER   If FileHandle does not\r
                                   represent a valid file.\r
-  \r
+\r
   @retval EFI_INVALID_PARAMETER   If FileInfo is NULL.\r
 \r
 **/\r
@@ -523,32 +523,32 @@ PeiServicesFfsGetVolumeInfo (
 \r
 /**\r
   Install a EFI_PEI_FIRMWARE_VOLUME_INFO_PPI instance so the PEI Core will be notified about a new firmware volume.\r
-  \r
-  This function allocates, initializes, and installs a new EFI_PEI_FIRMWARE_VOLUME_INFO_PPI using \r
+\r
+  This function allocates, initializes, and installs a new EFI_PEI_FIRMWARE_VOLUME_INFO_PPI using\r
   the parameters passed in to initialize the fields of the EFI_PEI_FIRMWARE_VOLUME_INFO_PPI instance.\r
   If the resources can not be allocated for EFI_PEI_FIRMWARE_VOLUME_INFO_PPI, then ASSERT().\r
   If the EFI_PEI_FIRMWARE_VOLUME_INFO_PPI can not be installed, then ASSERT().\r
 \r
-  \r
-  @param  FvFormat             Unique identifier of the format of the memory-mapped \r
-                               firmware volume.  This parameter is optional and \r
-                               may be NULL.  If NULL is specified, the \r
+\r
+  @param  FvFormat             Unique identifier of the format of the memory-mapped\r
+                               firmware volume.  This parameter is optional and\r
+                               may be NULL.  If NULL is specified, the\r
                                EFI_FIRMWARE_FILE_SYSTEM2_GUID format is assumed.\r
-  @param  FvInfo               Points to a buffer which allows the \r
-                               EFI_PEI_FIRMWARE_VOLUME_PPI to process the volume. \r
-                               The format of this buffer is specific to the FvFormat. \r
-                               For memory-mapped firmware volumes, this typically \r
+  @param  FvInfo               Points to a buffer which allows the\r
+                               EFI_PEI_FIRMWARE_VOLUME_PPI to process the volume.\r
+                               The format of this buffer is specific to the FvFormat.\r
+                               For memory-mapped firmware volumes, this typically\r
                                points to the first byte of the firmware volume.\r
-  @param  FvInfoSize           The size, in bytes, of FvInfo. For memory-mapped \r
-                               firmware volumes, this is typically the size of \r
+  @param  FvInfoSize           The size, in bytes, of FvInfo. For memory-mapped\r
+                               firmware volumes, this is typically the size of\r
                                the firmware volume.\r
-  @param  ParentFvName         If the new firmware volume originated from a file \r
-                               in a different firmware volume, then this parameter \r
+  @param  ParentFvName         If the new firmware volume originated from a file\r
+                               in a different firmware volume, then this parameter\r
                                specifies the GUID name of the originating firmware\r
                                volume. Otherwise, this parameter must be NULL.\r
-  @param  ParentFileName       If the new firmware volume originated from a file \r
-                               in a different firmware volume, then this parameter \r
-                               specifies the GUID file name of the originating \r
+  @param  ParentFileName       If the new firmware volume originated from a file\r
+                               in a different firmware volume, then this parameter\r
+                               specifies the GUID file name of the originating\r
                                firmware file. Otherwise, this parameter must be NULL.\r
 **/\r
 VOID\r