summaryrefslogtreecommitdiff
path: root/MdePkg
diff options
context:
space:
mode:
authormdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-07 23:00:13 +0000
committermdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-07 23:00:13 +0000
commit97c4afffcb46f0185ff00a393b188298d15f88f7 (patch)
tree3d68114f28c4bdf92164e01aa4863f489cffc8cf /MdePkg
parentf1409bb2ea04f05dde57f953846b680fe83a315b (diff)
downloadedk2-97c4afffcb46f0185ff00a393b188298d15f88f7.zip
edk2-97c4afffcb46f0185ff00a393b188298d15f88f7.tar.gz
edk2-97c4afffcb46f0185ff00a393b188298d15f88f7.tar.bz2
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
Diffstat (limited to 'MdePkg')
-rw-r--r--MdePkg/Include/Ppi/PciCfg2.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/MdePkg/Include/Ppi/PciCfg2.h b/MdePkg/Include/Ppi/PciCfg2.h
index f5ccb53..e8bc902 100644
--- a/MdePkg/Include/Ppi/PciCfg2.h
+++ b/MdePkg/Include/Ppi/PciCfg2.h
@@ -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;