summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Ppi/FirmwareVolumeInfo.h
diff options
context:
space:
mode:
authorAJFISH <AJFISH@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-18 20:28:02 +0000
committerAJFISH <AJFISH@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-18 20:28:02 +0000
commit00edb2182b6203a037219c29317ab6362c78b422 (patch)
tree35812fbf442b36bd80270ff0c6ad9f9be4906b92 /MdePkg/Include/Ppi/FirmwareVolumeInfo.h
parent00a8a5bfbb20efde3bedc3329a646209c2d1d6ac (diff)
downloadedk2-00edb2182b6203a037219c29317ab6362c78b422.tar.gz
edk2-00edb2182b6203a037219c29317ab6362c78b422.tar.bz2
edk2-00edb2182b6203a037219c29317ab6362c78b422.zip
Removed tabs and fixed some minor coding style issues. Also fixed typo in EFI_PEI_ENTRY_POINT
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2668 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Ppi/FirmwareVolumeInfo.h')
-rw-r--r--MdePkg/Include/Ppi/FirmwareVolumeInfo.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/MdePkg/Include/Ppi/FirmwareVolumeInfo.h b/MdePkg/Include/Ppi/FirmwareVolumeInfo.h
index 7f8698d077..a95addf315 100644
--- a/MdePkg/Include/Ppi/FirmwareVolumeInfo.h
+++ b/MdePkg/Include/Ppi/FirmwareVolumeInfo.h
@@ -26,44 +26,44 @@
#define EFI_PEI_FIRMWARE_VOLUME_INFO_PPI_GUID \
{ 0x49edb1c1, 0xbf21, 0x4761, { 0xbb, 0x12, 0xeb, 0x0, 0x31, 0xaa, 0xbb, 0x39 } }
-typedef struct _EFI_PEI_FIRMWARE_VOLUME_INFO_PPI EFI_PEI_FIRMWARE_VOLUME_INFO_PPI;
+typedef struct _EFI_PEI_FIRMWARE_VOLUME_INFO_PPI EFI_PEI_FIRMWARE_VOLUME_INFO_PPI;
/**
- This PPI describes the location and format of a firmware volume.
- The FvFormat can be EFI_FIRMWARE_FILE_SYSTEM2_GUID or the GUID for
- a user-defined format. The EFI_FIRMWARE_FILE_SYSTEM2_GUID is
- the PI Firmware Volume format.
+ This PPI describes the location and format of a firmware volume.
+ The FvFormat can be EFI_FIRMWARE_FILE_SYSTEM2_GUID or the GUID for
+ a user-defined format. The EFI_FIRMWARE_FILE_SYSTEM2_GUID is
+ the PI Firmware Volume format.
- @param FvFormat Unique identifier of the format of the memory-mapped firmware volume.
+ @param FvFormat Unique identifier of the format of the memory-mapped firmware volume.
- @param FvInfo Points to a buffer which allows the EFI_PEI_FIRMWARE_VOLUME_PPI to
- process the volume. The format of this buffer is
- specific to the FvFormat. For memory-mapped firmware volumes,
- this typically points to the first byte of the firmware volume.
+ @param FvInfo Points to a buffer which allows the EFI_PEI_FIRMWARE_VOLUME_PPI to
+ process the volume. The format of this buffer is
+ specific to the FvFormat. For memory-mapped firmware volumes,
+ this typically points to the first byte of the firmware volume.
- @param FvInfoSize Size of the data provided by FvInfo. For memory-mapped firmware volumes,
- this is typically the size of the firmware volume.
+ @param FvInfoSize Size of the data provided by FvInfo. For memory-mapped firmware volumes,
+ this is typically the size of the firmware volume.
- @param ParentFvName If the firmware volume originally came from a firmware file,
- then these point to the parent firmware volume
- name and firmware volume file. If it did not originally come
- from a firmware file, these should be NULL.
+ @param ParentFvName If the firmware volume originally came from a firmware file,
+ then these point to the parent firmware volume
+ name and firmware volume file. If it did not originally come
+ from a firmware file, these should be NULL.
- @param ParentFileName If the firmware volume originally came from a firmware file,
- then these point to the parent firmware volume
- name and firmware volume file. If it did not originally come
- from a firmware file, these should be NULL.
+ @param ParentFileName If the firmware volume originally came from a firmware file,
+ then these point to the parent firmware volume
+ name and firmware volume file. If it did not originally come
+ from a firmware file, these should be NULL.
**/
struct _EFI_PEI_FIRMWARE_VOLUME_INFO_PPI {
- EFI_GUID FvFormat;
- VOID *FvInfo;
- UINT32 FvInfoSize;
- EFI_GUID *ParentFvName;
- EFI_GUID *ParentFileName;
+ EFI_GUID FvFormat;
+ VOID *FvInfo;
+ UINT32 FvInfoSize;
+ EFI_GUID *ParentFvName;
+ EFI_GUID *ParentFileName;
};
-extern EFI_GUID gEfiPeiFirmwareVolumeInfoPpiGuid;
+extern EFI_GUID gEfiPeiFirmwareVolumeInfoPpiGuid;
#endif