Last change
on this file since 105670 was 105670, checked in by vboxsync, 4 months ago |
Devices/EFI/FirmwareNew: Merge edk2-stable-202405 and make it build on aarch64, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
628 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | Provide an empty lib instance constructor for modules that can only run from
|
---|
3 | RAM but are not DXE_RUNTIME_DRIVER modules.
|
---|
4 |
|
---|
5 | This ensures that e.g. any HobLib constructor is ordered correctly. (The
|
---|
6 | DXE_CORE calls constructors late, but the DXE_CORE HobLib instance needs no
|
---|
7 | construction anyway.)
|
---|
8 |
|
---|
9 | Copyright (C) Red Hat
|
---|
10 |
|
---|
11 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
12 | **/
|
---|
13 |
|
---|
14 | #include <Base.h>
|
---|
15 |
|
---|
16 | /**
|
---|
17 | Empty library instance constructor, only for ensuring the connectivity of the
|
---|
18 | constructor dependency graph.
|
---|
19 | **/
|
---|
20 | RETURN_STATUS
|
---|
21 | EFIAPI
|
---|
22 | DebugLibFdtPL011UartRamConstructor (
|
---|
23 | VOID
|
---|
24 | )
|
---|
25 | {
|
---|
26 | return RETURN_SUCCESS;
|
---|
27 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.