]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFsp2Pkg/Library/SecFspSecPlatformLibNull/PlatformSecLibNull.c
df8c5d121fd04434c302ab879fb6add7038962c2
[mirror_edk2.git] / IntelFsp2Pkg / Library / SecFspSecPlatformLibNull / PlatformSecLibNull.c
1 /** @file
2 Null instance of Platform Sec Lib.
3
4 Copyright (c) 2014 - 2020, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #include <PiPei.h>
10 #include <Library/FspCommonLib.h>
11
12 /**
13 This function check the signature of UPD.
14
15 @param[in] ApiIdx Internal index of the FSP API.
16 @param[in] ApiParam Parameter of the FSP API.
17
18 **/
19 EFI_STATUS
20 EFIAPI
21 FspUpdSignatureCheck (
22 IN UINT32 ApiIdx,
23 IN VOID *ApiParam
24 )
25 {
26 return EFI_SUCCESS;
27 }
28
29 /**
30 This function handles FspMultiPhaseSiInitApi.
31
32 @param[in] ApiIdx Internal index of the FSP API.
33 @param[in] ApiParam Parameter of the FSP API.
34
35 **/
36 EFI_STATUS
37 EFIAPI
38 FspMultiPhaseSiInitApiHandler (
39 IN UINT32 ApiIdx,
40 IN VOID *ApiParam
41 )
42 {
43 return EFI_SUCCESS;
44 }