]> git.proxmox.com Git - mirror_edk2.git/blame - UefiPayloadPkg/Library/PlatformSupportLibNull/PlatformSupportLibNull.c
UefiPayloadPkg: Enhance UEFI payload for coreboot and Slim Bootloader
[mirror_edk2.git] / UefiPayloadPkg / Library / PlatformSupportLibNull / PlatformSupportLibNull.c
CommitLineData
04af8bf2
DG
1/** @file\r
2 Include all platform specific features which can be customized by IBV/OEM.\r
3\r
4Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>\r
5SPDX-License-Identifier: BSD-2-Clause-Patent\r
6\r
7**/\r
8\r
9#include <Uefi.h>\r
10#include <Library/BaseLib.h>\r
11#include <Library/UefiLib.h>\r
12#include <Library/PlatformSupportLib.h>\r
13\r
14/**\r
15 Parse platform specific information from coreboot.\r
16\r
17 @retval RETURN_SUCCESS The platform specific coreboot support succeeded.\r
18 @retval RETURN_DEVICE_ERROR The platform specific coreboot support could not be completed.\r
19\r
20**/\r
21EFI_STATUS\r
22EFIAPI\r
23ParsePlatformInfo (\r
24 VOID\r
25 )\r
26{\r
27 return EFI_SUCCESS;\r
28}\r
29\r