]> git.proxmox.com Git - mirror_edk2.git/blame - CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSupportLibNull.c
CorebootModulePkg: Add a library to parse platform specific info.
[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>
5This program and the accompanying materials
6are licensed and made available under the terms and conditions of the BSD License
7which accompanies this distribution. The full text of the license may be found at
8http://opensource.org/licenses/bsd-license.php
9
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13**/
14
15#include <Uefi.h>
16#include <Library/BaseLib.h>
17#include <Library/UefiLib.h>
18#include <Library/CbPlatformSupportLib.h>
19
20/**
21 Parse platform specific information from coreboot.
22
23 @retval RETURN_SUCCESS The platform specific coreboot support succeeded.
24 @retval RETURN_DEVICE_ERROR The platform specific coreboot support could not be completed.
25
26**/
27EFI_STATUS
28EFIAPI
29CbParsePlatformInfo (
30 VOID
31 )
32{
33 return EFI_SUCCESS;
34}
35