Index: Library/PeiServicesTablePointerLib/PeiServicesTablePointer.c
===================================================================
--- Library/PeiServicesTablePointerLib/PeiServicesTablePointer.c	(revision 14848)
+++ Library/PeiServicesTablePointerLib/PeiServicesTablePointer.c	(working copy)
@@ -67,4 +67,20 @@
   return (CONST EFI_PEI_SERVICES**)PeiServicesTablePointer;
 }
 
+/**
+  Migrate the space that stores the PEI Services Table pointer.
 
+  For X86 and x64 processors, Interrupt Descriptor Table (IDT) preceding space is used 
+  to store EFI_PEI_SERVICES**. Migrate IDT table and the preceding space to the permanent memory. 
+  For Itanium and ARM Processor, the specific register is used to store EFI_PEI_SERVICES**.
+  No migration is requird. 
+
+**/
+VOID
+EFIAPI
+MigratePeiServicesTablePointer (
+  )
+{
+  return;
+}
+
