Current debug message when enable/disable CPU feature not correct. This patch enhances it to make it more accurate.
Cc: Ruiyu Ni <[email protected]> Cc: Shao, Ming <[email protected]> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Eric Dong <[email protected]> --- UefiCpuPkg/Library/RegisterCpuFeaturesLib/CpuFeaturesInitialize.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/UefiCpuPkg/Library/RegisterCpuFeaturesLib/CpuFeaturesInitialize.c b/UefiCpuPkg/Library/RegisterCpuFeaturesLib/CpuFeaturesInitialize.c index 54c9827..474aea3 100644 --- a/UefiCpuPkg/Library/RegisterCpuFeaturesLib/CpuFeaturesInitialize.c +++ b/UefiCpuPkg/Library/RegisterCpuFeaturesLib/CpuFeaturesInitialize.c @@ -528,9 +528,9 @@ AnalysisProcessorFeatures ( // SupportedMaskCleanBit (CpuFeaturesData->SettingPcds, CpuFeatureInOrder->FeatureMask); if (CpuFeatureInOrder->FeatureName != NULL) { - DEBUG ((DEBUG_WARN, "Warning :: Failed to enable Feature Name = %a.\n", CpuFeatureInOrder->FeatureName)); + DEBUG ((DEBUG_WARN, "Warning :: Failed to enable Feature: Name = %a.\n", CpuFeatureInOrder->FeatureName)); } else { - DEBUG ((DEBUG_WARN, "Warning :: Failed to enable Feature Mask = ")); + DEBUG ((DEBUG_WARN, "Warning :: Failed to enable Feature: Mask = ")); DumpCpuFeatureMask (CpuFeatureInOrder->FeatureMask); } } @@ -538,9 +538,9 @@ AnalysisProcessorFeatures ( Status = CpuFeatureInOrder->InitializeFunc (ProcessorNumber, CpuInfo, CpuFeatureInOrder->ConfigData, FALSE); if (EFI_ERROR (Status)) { if (CpuFeatureInOrder->FeatureName != NULL) { - DEBUG ((DEBUG_WARN, "Warning :: Failed to enable Feature Name = %a.\n", CpuFeatureInOrder->FeatureName)); + DEBUG ((DEBUG_WARN, "Warning :: Failed to disable Feature: Name = %a.\n", CpuFeatureInOrder->FeatureName)); } else { - DEBUG ((DEBUG_WARN, "Warning :: Failed to enable Feature Mask = ")); + DEBUG ((DEBUG_WARN, "Warning :: Failed to disable Feature: Mask = ")); DumpCpuFeatureMask (CpuFeatureInOrder->FeatureMask); } } -- 2.7.0.windows.1 _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

