]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFspPkg/Library/SecFspSecPlatformLibNull/PlatformSecLibNull.c
IntelFspPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / IntelFspPkg / Library / SecFspSecPlatformLibNull / PlatformSecLibNull.c
1 /** @file
2 Null instance of Platform Sec Lib.
3
4 Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #include <PiPei.h>
10
11 /**
12 This function check the signture of UPD.
13
14 @param[in] ApiIdx Internal index of the FSP API.
15 @param[in] ApiParam Parameter of the FSP API.
16
17 **/
18 EFI_STATUS
19 EFIAPI
20 FspUpdSignatureCheck (
21 IN UINT32 ApiIdx,
22 IN VOID *ApiParam
23 )
24 {
25 return EFI_SUCCESS;
26 }
27
28