Downgrade one debug message level in DxeTpm2MeasureBootHandler from EFI_D_ERROR to EFI_D_INFO.

No TPM2 is considered as valid case. For example, a platform may only have TPM1.2, without TPM2.0 So this is NOT an ERROR message, but more an INFO message.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: "Yao, Jiewen" <Jiewen.Yao@intel.com>
Reviewed-by: "Chao Zhang" <chao.b.zhang@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18091 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Yao, Jiewen 2015-07-28 06:58:47 +00:00 committed by jyao1
parent aaf8aa7b2c
commit 5c61c5cfc8
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ DxeTpm2MeasureBootHandler (
// TrEE protocol is not installed. So, TPM2 is not present. // TrEE protocol is not installed. So, TPM2 is not present.
// Don't do any measurement, and directly return EFI_SUCCESS. // Don't do any measurement, and directly return EFI_SUCCESS.
// //
DEBUG ((EFI_D_ERROR, "DxeTpm2MeasureBootHandler - TrEE - %r\n", Status)); DEBUG ((EFI_D_INFO, "DxeTpm2MeasureBootHandler - TrEE - %r\n", Status));
return EFI_SUCCESS; return EFI_SUCCESS;
} }