]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Ppi/LoadFile.h
Removed tabs and fixed some minor coding style issues. Also fixed typo in EFI_PEI_ENT...
[mirror_edk2.git] / MdePkg / Include / Ppi / LoadFile.h
index 041722166518a8b858e8a8629c2cbe6a2ad572bc..2d00ae6278ccb299f0da7316bac0bdf2e54a9872 100644 (file)
 #define __FV_FILE_LOADER_PPI_H__\r
 \r
 #define EFI_PEI_LOAD_FILE_PPI_GUID \\r
-       { 0xb9e0abfe, 0x5979, 0x4914, { 0x97, 0x7f, 0x6d, 0xee, 0x78, 0xc2, 0x78, 0xa6 } }\r
+  { 0xb9e0abfe, 0x5979, 0x4914, { 0x97, 0x7f, 0x6d, 0xee, 0x78, 0xc2, 0x78, 0xa6 } }\r
 \r
 \r
-typedef struct _EFI_PEI_LOAD_FILE_PPI  EFI_PEI_LOAD_FILE_PPI;\r
+typedef struct _EFI_PEI_LOAD_FILE_PPI EFI_PEI_LOAD_FILE_PPI;\r
 \r
 /**\r
   This service is the single member function of EFI_LOAD_FILE_PPI. This service separates\r
   image loading and relocating from the PEI Foundation.\r
   \r
-  @param This                                                          Interface pointer that implements\r
+  @param This                 Interface pointer that implements\r
                               the Load File PPI instance.\r
 \r
-  @param FileHandle                                            File handle of the file to load.\r
-                                                                                                                       Type EFI_PEI_FILE_HANDLE is defined in\r
-                                                                                                                       FfsFindNextFile().\r
+  @param FileHandle           File handle of the file to load.\r
+                              Type EFI_PEI_FILE_HANDLE is defined in\r
+                              FfsFindNextFile().\r
 \r
-  @param ImageAddress                          Pointer to the address of the\r
-                                                                                                                       loaded image.\r
+  @param ImageAddress         Pointer to the address of the\r
+                              loaded image.\r
 \r
-  @param ImageSize                                             Pointer to the size of the loaded\r
+  @param ImageSize            Pointer to the size of the loaded\r
                               image.\r
 \r
-  @param EntryPoint                                    Pointer to the entry point of the\r
+  @param EntryPoint           Pointer to the entry point of the\r
                               image.\r
 \r
-  @param AuthenticationState   On exit, points to the attestation\r
+  @param AuthenticationState  On exit, points to the attestation\r
                               authentication state of the image\r
                               or 0 if no attestation was\r
                               performed. The format of\r
@@ -54,29 +54,29 @@ typedef struct _EFI_PEI_LOAD_FILE_PPI       EFI_PEI_LOAD_FILE_PPI;
                               EFI_PEI_GUIDED_SECTION_EXTRACTION_PPI.ExtractSection()\r
 \r
 \r
-  @retval EFI_SUCCESS                          The image was loaded successfully.\r
+  @retval EFI_SUCCESS         The image was loaded successfully.\r
 \r
-  @retval EFI_OUT_OF_RESOURCES         There was not enough memory.\r
+  @retval EFI_OUT_OF_RESOURCES  There was not enough memory.\r
 \r
-  @retval EFI_LOAD_ERROR                       There was no supported image in\r
+  @retval EFI_LOAD_ERROR      There was no supported image in\r
                               the file EFI_INVALID_PARAMETER\r
                               FileHandle was not a valid\r
                               firmware file handle.\r
-  @retval EFI_INVALID_PARAMETER        EntryPoint was NULL.\r
+  @retval EFI_INVALID_PARAMETER   EntryPoint was NULL.\r
 \r
-  @retval EFI_NOT_SUPPORTED    An image requires relocations or\r
-                                                                                                                       is not memory mapped.\r
+  @retval EFI_NOT_SUPPORTED   An image requires relocations or\r
+                              is not memory mapped.\r
    \r
 **/\r
 typedef\r
 EFI_STATUS\r
 (EFIAPI *EFI_PEI_LOAD_FILE) (\r
-       IN CONST        EFI_PEI_LOAD_FILE_PPI   *This,\r
-       IN CONST        EFI_PEI_FILE_HANDLE             FileHandle,\r
-       OUT                     EFI_PHYSICAL_ADDRESS            *ImageAddress,\r
-       OUT                     UINT64                                                                  *ImageSize,\r
-       OUT                     EFI_PHYSICAL_ADDRESS            *EntryPoint,\r
-       OUT                     UINT32                                                                  *AuthenticationState\r
+  IN CONST  EFI_PEI_LOAD_FILE_PPI   *This,\r
+  IN CONST  EFI_PEI_FILE_HANDLE     FileHandle,\r
+  OUT       EFI_PHYSICAL_ADDRESS    *ImageAddress,\r
+  OUT       UINT64                  *ImageSize,\r
+  OUT       EFI_PHYSICAL_ADDRESS    *EntryPoint,\r
+  OUT       UINT32                  *AuthenticationState\r
 );\r
 \r
 \r
@@ -92,7 +92,7 @@ EFI_STATUS
   \r
 **/\r
 struct _EFI_PEI_LOAD_FILE_PPI {\r
-       EFI_PEI_LOAD_FILE LoadFile;\r
+  EFI_PEI_LOAD_FILE LoadFile;\r
 };\r
 \r
 \r