]> git.proxmox.com Git - mirror_edk2.git/blame - CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSupportLibNull.c
BaseTools: Check the fread function and avoid dead loop
[mirror_edk2.git] / CorebootModulePkg / Library / CbPlatformSupportLibNull / CbPlatformSupportLibNull.c
CommitLineData
2f20bfd9 1/** @file
2 Include all platform specific features which can be customized by IBV/OEM.
3
4Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
f3342b7a 5SPDX-License-Identifier: BSD-2-Clause-Patent
2f20bfd9 6
7**/
8
9#include <Uefi.h>
10#include <Library/BaseLib.h>
11#include <Library/UefiLib.h>
12#include <Library/CbPlatformSupportLib.h>
13
14/**
15 Parse platform specific information from coreboot.
16
17 @retval RETURN_SUCCESS The platform specific coreboot support succeeded.
18 @retval RETURN_DEVICE_ERROR The platform specific coreboot support could not be completed.
19
20**/
21EFI_STATUS
22EFIAPI
23CbParsePlatformInfo (
24 VOID
25 )
26{
27 return EFI_SUCCESS;
28}
29