PeiMiscPolicyUpdate.h 515 B

12345678910111213141516171819202122232425
  1. /** @file
  2. Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
  3. SPDX-License-Identifier: BSD-2-Clause-Patent
  4. **/
  5. #ifndef _PEI_MISC_POLICY_UPDATE_H_
  6. #define _PEI_MISC_POLICY_UPDATE_H_
  7. #include <FspmUpd.h>
  8. /**
  9. Performs FSP Misc UPD initialization.
  10. @param[in][out] FspmUpd Pointer to FSPM_UPD Data.
  11. @retval EFI_SUCCESS FSP UPD Data is updated.
  12. **/
  13. EFI_STATUS
  14. EFIAPI
  15. PeiFspMiscUpdUpdatePreMem (
  16. IN OUT FSPM_UPD *FspmUpd
  17. );
  18. #endif