mirror of https://github.com/acidanthera/audk.git
Add SetPeiServicesTablePointer() interface implement in PeiServicesTablePointerLibKr7
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4060 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
81c7803cf4
commit
61296d0d5e
|
@ -62,6 +62,20 @@ PeiServicesTablePointerLibConstructor (
|
|||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
The function set the pointer of PEI services immediately preceding the IDT table
|
||||
according to PI specification.
|
||||
|
||||
@param PeiServices The address of PeiServices pointer.
|
||||
**/
|
||||
VOID
|
||||
EFIAPI
|
||||
SetPeiServicesTablePointer (
|
||||
EFI_PEI_SERVICES ** PeiServicesTablePointer
|
||||
)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
After memory initialization in PEI phase, the IDT table in temporary memory should
|
||||
be migrated to memory, and the address of PeiServicesPointer also need to be updated
|
||||
|
|
Loading…
Reference in New Issue