#ifndef _NTBCD_H
/**
* Specifies the access policy for PCI configuration space.
*/
typedef enum _BcdLibrary_ConfigAccessPolicy
{
/**
* Access to PCI configuration space through the memory-mapped region is allowed.
*/
ConfigAccessPolicyDefault,
/**
* Access to PCI configuration space through the memory-mapped region is not allowed.
* This setting is used for platforms that implement memory-mapped configuration space incorrectly.
* The CFC/CF8 access mechanism can be used to access configuration space on these platforms.
*/
ConfigAccessPolicyDisallowMmConfig
} BcdLibrary_ConfigAccessPolicy;
View code on GitHub
No description available.