diff options
author | Laszlo Ersek <lersek@redhat.com> | 2018-03-10 18:13:18 +0100 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2018-03-13 14:30:14 +0100 |
commit | 1c6ee78f36e953ce611c67d06866db5f954795b5 (patch) | |
tree | 86fe2147b9681837278775b305ab4a1882dc84bc | |
parent | b15e00c823d330a058f25e8142acbd1a68998c1c (diff) | |
download | edk2-1c6ee78f36e953ce611c67d06866db5f954795b5.zip edk2-1c6ee78f36e953ce611c67d06866db5f954795b5.tar.gz edk2-1c6ee78f36e953ce611c67d06866db5f954795b5.tar.bz2 |
OvmfPkg/AcpiPlatformDxe: list "AcpiPlatform.h" in the INF files
Among other things, the header file declares InstallAcpiTables(). This
function is called from AcpiPlatformEntryPoint() -- the entry point of
both INF files, defined in the common "EntryPoint.c" file --, and it is
defined (dependent on INF file) in "AcpiPlatform.c" or
"QemuFwCfgAcpiPlatform.c".
Cc: Anthony Perard <anthony.perard@citrix.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Julien Grall <julien.grall@linaro.org>
Cc: Phil Dennis-Jordan <phil@philjordan.eu>
Suggested-by: Michael Kinney <michael.d.kinney@intel.com>
Ref: http://mid.mail-archive.com/E92EE9817A31E24EB0585FDF735412F56327F7D3@ORSMSX113.amr.corp.intel.com
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
-rw-r--r-- | OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf | 1 | ||||
-rw-r--r-- | OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf b/OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf index f1ab80d..8ceb64e 100644 --- a/OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf +++ b/OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf @@ -28,6 +28,7 @@ [Sources]
AcpiPlatform.c
+ AcpiPlatform.h
BootScript.c
EntryPoint.c
PciDecoding.c
diff --git a/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf b/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf index 6b6e787..8f13c84 100644 --- a/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf +++ b/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf @@ -27,6 +27,7 @@ #
[Sources]
+ AcpiPlatform.h
BootScript.c
EntryPoint.c
PciDecoding.c
|