]> git.proxmox.com Git - mirror_edk2.git/blob - CorebootModulePkg/Library/CbPlatformSupportLibNull/CbPlatformSupportLibNull.c
CorebootModulePkg: Add a library to parse platform specific info.
[mirror_edk2.git] / CorebootModulePkg / Library / CbPlatformSupportLibNull / CbPlatformSupportLibNull.c
1 /** @file
2 Include all platform specific features which can be customized by IBV/OEM.
3
4 Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT 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 **/
27 EFI_STATUS
28 EFIAPI
29 CbParsePlatformInfo (
30 VOID
31 )
32 {
33 return EFI_SUCCESS;
34 }
35