mirror of https://github.com/acidanthera/audk.git
Fix ICC build error
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4108 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
6979fd9382
commit
a88c89156f
|
@ -61,8 +61,7 @@ PalCall (
|
||||||
{
|
{
|
||||||
UINT64 PalCallAddress;
|
UINT64 PalCallAddress;
|
||||||
PAL_CALL_RETURN ReturnVal;
|
PAL_CALL_RETURN ReturnVal;
|
||||||
|
CONST EFI_PEI_SERVICES **PeiServices;
|
||||||
EFI_PEI_SERVICES **PeiServices;
|
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
EFI_SEC_PLATFORM_INFORMATION_PPI *SecPlatformPpi;
|
EFI_SEC_PLATFORM_INFORMATION_PPI *SecPlatformPpi;
|
||||||
IPF_HANDOFF_STATUS IpfStatus;
|
IPF_HANDOFF_STATUS IpfStatus;
|
||||||
|
@ -71,7 +70,7 @@ PalCall (
|
||||||
//
|
//
|
||||||
// Get Pei Service Table Pointer
|
// Get Pei Service Table Pointer
|
||||||
//
|
//
|
||||||
PeiServices = GetPeiServicesTablePointer ();
|
PeiServices = (CONST EFI_PEI_SERVICES **) GetPeiServicesTablePointer ();
|
||||||
|
|
||||||
//
|
//
|
||||||
// Locate SEC Ppi
|
// Locate SEC Ppi
|
||||||
|
|
Loading…
Reference in New Issue