CbPlatformSupportLibNull.c 638 B

1234567891011121314151617181920212223242526272829
  1. /** @file
  2. Include all platform specific features which can be customized by IBV/OEM.
  3. Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #include <Uefi.h>
  7. #include <Library/BaseLib.h>
  8. #include <Library/UefiLib.h>
  9. #include <Library/CbPlatformSupportLib.h>
  10. /**
  11. Parse platform specific information from coreboot.
  12. @retval RETURN_SUCCESS The platform specific coreboot support succeeded.
  13. @retval RETURN_DEVICE_ERROR The platform specific coreboot support could not be completed.
  14. **/
  15. EFI_STATUS
  16. EFIAPI
  17. CbParsePlatformInfo (
  18. VOID
  19. )
  20. {
  21. return EFI_SUCCESS;
  22. }