PlatformSecLibNull.c 513 B

12345678910111213141516171819202122232425262728
  1. /** @file
  2. Null instance of Platform Sec Lib.
  3. Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #include <PiPei.h>
  7. /**
  8. This function check the signture of UPD.
  9. @param[in] ApiIdx Internal index of the FSP API.
  10. @param[in] ApiParam Parameter of the FSP API.
  11. **/
  12. EFI_STATUS
  13. EFIAPI
  14. FspUpdSignatureCheck (
  15. IN UINT32 ApiIdx,
  16. IN VOID *ApiParam
  17. )
  18. {
  19. return EFI_SUCCESS;
  20. }