]> git.proxmox.com Git - mirror_edk2.git/blob - UefiPayloadPkg/Library/DxeHobListLibNull/DxeHobListLibNull.c
UefiPayloadPkg: Fix ECC reported issues
[mirror_edk2.git] / UefiPayloadPkg / Library / DxeHobListLibNull / DxeHobListLibNull.c
1 /** @file
2 This library retrieve the EFI_BOOT_SERVICES pointer from EFI system table in
3 library's constructor.
4
5 Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10
11 #include <Uefi.h>
12
13 /**
14 The dummy constructor for DxeHobListLib.
15
16 @retval EFI_SUCCESS
17
18 **/
19 EFI_STATUS
20 EFIAPI
21 DxeHobListLibNullConstructor (
22 VOID
23 )
24 {
25 return EFI_SUCCESS;
26 }