Reviewed-by: Hao Wu <[email protected]>
Best Regards, Hao Wu > -----Original Message----- > From: Zeng, Star > Sent: Wednesday, August 02, 2017 10:10 AM > To: [email protected] > Cc: Zeng, Star; Wu, Hao A; Gao, Liming; Fan, Jeff > Subject: [PATCH] UefiCpuPkg SecCore: Fix operands of different size in bitwise > operation > > It is introduced by 9e9ca2100f22be29f1a53129d741f4305ff34a71. > > Cc: Hao Wu <[email protected]> > Cc: Liming Gao <[email protected]> > Cc: Jeff Fan <[email protected]> > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Star Zeng <[email protected]> > --- > UefiCpuPkg/SecCore/SecMain.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/UefiCpuPkg/SecCore/SecMain.c b/UefiCpuPkg/SecCore/SecMain.c > index e9e243ca0585..173bbfcfcba4 100644 > --- a/UefiCpuPkg/SecCore/SecMain.c > +++ b/UefiCpuPkg/SecCore/SecMain.c > @@ -281,7 +281,7 @@ SecStartupPhase2( > // will be built based on them in PEI phase. > // > SecCoreData->PeiTemporaryRamBase = (VOID *)(((UINTN)SecCoreData- > >PeiTemporaryRamBase + 7) & ~0x07); > - SecCoreData->PeiTemporaryRamSize &= ~0x07; > + SecCoreData->PeiTemporaryRamSize &= ~(UINTN)0x07; > } else { > // > // No addition PPI, PpiList directly point to the common PPI list. > -- > 2.7.0.windows.1 _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

