mirror of https://github.com/acidanthera/audk.git
MdeModulePkg: rename PropertiesTableEnable to PcdPropertiesTableEnable
PCD names should start with 'Pcd' so rename PropertiesTableEnable to PcdPropertiesTableEnable. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: "Yao, Jiewen" <Jiewen.Yao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17810 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
2caab142ce
commit
bc31c0c604
|
@ -185,7 +185,7 @@
|
|||
gEfiMdeModulePkgTokenSpaceGuid.PcdMaxEfiSystemTablePointerAddress ## CONSUMES
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PcdMemoryProfileMemoryType ## CONSUMES
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PcdMemoryProfilePropertyMask ## CONSUMES
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PropertiesTableEnable ## CONSUMES
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PcdPropertiesTableEnable ## CONSUMES
|
||||
|
||||
# [Hob]
|
||||
# RESOURCE_DESCRIPTOR ## CONSUMES
|
||||
|
|
|
@ -1311,7 +1311,7 @@ InstallPropertiesTable (
|
|||
VOID *Context
|
||||
)
|
||||
{
|
||||
if (PcdGetBool (PropertiesTableEnable)) {
|
||||
if (PcdGetBool (PcdPropertiesTableEnable)) {
|
||||
EFI_STATUS Status;
|
||||
|
||||
Status = gBS->InstallConfigurationTable (&gEfiPropertiesTableGuid, &mPropertiesTable);
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
# section. If PE code/data sections are merged, the result is unpredictable.
|
||||
#
|
||||
# @Prompt Publish UEFI PropertiesTable.
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PropertiesTableEnable|TRUE|BOOLEAN|0x0000006e
|
||||
gEfiMdeModulePkgTokenSpaceGuid.PcdPropertiesTableEnable|TRUE|BOOLEAN|0x0000006e
|
||||
|
||||
## Default OEM ID for ACPI table creation, its length must be 0x6 bytes to follow ACPI specification.
|
||||
# @Prompt Default OEM ID for ACPI table creation.
|
||||
|
|
Loading…
Reference in New Issue