mirror of https://github.com/acidanthera/audk.git
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:
parent
f1409bb2ea
commit
97c4afffcb
|
@ -39,9 +39,21 @@ typedef struct _EFI_PEI_PCI_CFG2_PPI EFI_PEI_PCI_CFG2_PPI;
|
||||||
/// EFI_PEI_PCI_CFG_PPI_WIDTH
|
/// EFI_PEI_PCI_CFG_PPI_WIDTH
|
||||||
///
|
///
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
///
|
||||||
|
/// 8-bit access
|
||||||
|
///
|
||||||
EfiPeiPciCfgWidthUint8 = 0,
|
EfiPeiPciCfgWidthUint8 = 0,
|
||||||
|
///
|
||||||
|
/// 16-bit access
|
||||||
|
///
|
||||||
EfiPeiPciCfgWidthUint16 = 1,
|
EfiPeiPciCfgWidthUint16 = 1,
|
||||||
|
///
|
||||||
|
/// 32-bit access
|
||||||
|
///
|
||||||
EfiPeiPciCfgWidthUint32 = 2,
|
EfiPeiPciCfgWidthUint32 = 2,
|
||||||
|
///
|
||||||
|
/// 64-bit access
|
||||||
|
///
|
||||||
EfiPeiPciCfgWidthUint64 = 3,
|
EfiPeiPciCfgWidthUint64 = 3,
|
||||||
EfiPeiPciCfgWidthMaximum
|
EfiPeiPciCfgWidthMaximum
|
||||||
} EFI_PEI_PCI_CFG_PPI_WIDTH;
|
} EFI_PEI_PCI_CFG_PPI_WIDTH;
|
||||||
|
|
Loading…
Reference in New Issue