Add descriptions for each of the width values in the enumeration

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6906 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
mdkinney 2008-12-07 23:00:13 +00:00
parent f1409bb2ea
commit 97c4afffcb
1 changed files with 12 additions and 0 deletions

View File

@ -39,9 +39,21 @@ typedef struct _EFI_PEI_PCI_CFG2_PPI EFI_PEI_PCI_CFG2_PPI;
/// EFI_PEI_PCI_CFG_PPI_WIDTH
///
typedef enum {
///
/// 8-bit access
///
EfiPeiPciCfgWidthUint8 = 0,
///
/// 16-bit access
///
EfiPeiPciCfgWidthUint16 = 1,
///
/// 32-bit access
///
EfiPeiPciCfgWidthUint32 = 2,
///
/// 64-bit access
///
EfiPeiPciCfgWidthUint64 = 3,
EfiPeiPciCfgWidthMaximum
} EFI_PEI_PCI_CFG_PPI_WIDTH;