]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFsp2Pkg/Library/SecFspSecPlatformLibNull/PlatformSecLibNull.c
50cb3142d2f0510b3043da4b1a1cac5107cd797f
[mirror_edk2.git] / IntelFsp2Pkg / Library / SecFspSecPlatformLibNull / PlatformSecLibNull.c
1 /** @file
2 Null instance of Platform Sec Lib.
3
4 Copyright (c) 2014 - 2016, 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 signture 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 }