mirror of https://github.com/acidanthera/audk.git
Fix ICC build failure.
Signed-off-by: niruiyu git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12331 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
1a2ad6fca7
commit
81b7a60989
|
@ -71,7 +71,7 @@ TcgConfigDriverEntryPoint (
|
|||
}
|
||||
|
||||
PrivateData->TcgProtocol = TcgProtocol;
|
||||
PrivateData->HideTpm = PcdGetBool (PcdHideTpmSupport) && PcdGetBool (PcdHideTpm);
|
||||
PrivateData->HideTpm = (BOOLEAN) (PcdGetBool (PcdHideTpmSupport) && PcdGetBool (PcdHideTpm));
|
||||
|
||||
//
|
||||
// Install TCG configuration form
|
||||
|
|
|
@ -184,7 +184,7 @@ TcgExtractConfig (
|
|||
|
||||
Configuration.MorState = PcdGetBool (PcdMorEnable);
|
||||
Configuration.TpmOperation = ENABLE;
|
||||
Configuration.HideTpm = PcdGetBool (PcdHideTpmSupport) && PcdGetBool (PcdHideTpm);
|
||||
Configuration.HideTpm = (BOOLEAN) (PcdGetBool (PcdHideTpmSupport) && PcdGetBool (PcdHideTpm));
|
||||
//
|
||||
// Read the original value of HideTpm from PrivateData which won't be changed by Setup in this boot.
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue