REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the IntelFsp2Pkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Chasel Chiu <chasel.chiu@intel.com>
		
			
				
	
	
		
			45 lines
		
	
	
		
			862 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			862 B
		
	
	
	
		
			C
		
	
	
	
	
	
/** @file
 | 
						|
  Null instance of Platform Sec Lib.
 | 
						|
 | 
						|
  Copyright (c) 2014 - 2020, Intel Corporation. All rights reserved.<BR>
 | 
						|
  SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
 | 
						|
**/
 | 
						|
 | 
						|
#include <PiPei.h>
 | 
						|
#include <Library/FspCommonLib.h>
 | 
						|
 | 
						|
/**
 | 
						|
  This function check the signature of UPD.
 | 
						|
 | 
						|
  @param[in]  ApiIdx           Internal index of the FSP API.
 | 
						|
  @param[in]  ApiParam         Parameter of the FSP API.
 | 
						|
 | 
						|
**/
 | 
						|
EFI_STATUS
 | 
						|
EFIAPI
 | 
						|
FspUpdSignatureCheck (
 | 
						|
  IN UINT32  ApiIdx,
 | 
						|
  IN VOID    *ApiParam
 | 
						|
  )
 | 
						|
{
 | 
						|
  return EFI_SUCCESS;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
  This function handles FspMultiPhaseSiInitApi.
 | 
						|
 | 
						|
  @param[in]  ApiIdx           Internal index of the FSP API.
 | 
						|
  @param[in]  ApiParam         Parameter of the FSP API.
 | 
						|
 | 
						|
**/
 | 
						|
EFI_STATUS
 | 
						|
EFIAPI
 | 
						|
FspMultiPhaseSiInitApiHandler (
 | 
						|
  IN UINT32  ApiIdx,
 | 
						|
  IN VOID    *ApiParam
 | 
						|
  )
 | 
						|
{
 | 
						|
  return EFI_SUCCESS;
 | 
						|
}
 |