summaryrefslogtreecommitdiffstats
path: root/UefiPayloadPkg/Library/DxeHobListLibNull/DxeHobListLibNull.c
blob: 6c69f9879ea9c6148dcc725576cf51a8b01be0be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/** @file
  This library retrieve the EFI_BOOT_SERVICES pointer from EFI system table in
  library's constructor.

  Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
  SPDX-License-Identifier: BSD-2-Clause-Patent

**/


#include <Uefi.h>

/**
  The dummy constructor for DxeHobListLib.

  @retval  EFI_SUCCESS

**/
EFI_STATUS
EFIAPI
DxeHobListLibNullConstructor (
  VOID
  )
{
  return EFI_SUCCESS;
}