diff options
author | Laszlo Ersek <lersek@redhat.com> | 2021-05-26 22:14:11 +0200 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-06-04 16:01:50 +0000 |
commit | 6d1e56e71567303435e0fb3173dacd0ff4859efe (patch) | |
tree | 5798b82de203af5daf74ec9ab1d2cb9e6b9f0cf2 /OvmfPkg/AcpiPlatformDxe | |
parent | 180f1908b34f9cca0792d442a9deaae7f6e9beab (diff) | |
download | edk2-6d1e56e71567303435e0fb3173dacd0ff4859efe.tar.gz edk2-6d1e56e71567303435e0fb3173dacd0ff4859efe.tar.bz2 edk2-6d1e56e71567303435e0fb3173dacd0ff4859efe.zip |
OvmfPkg/AcpiPlatformDxe/QemuLoader.h: remove QemuFwCfgLib class dependency
"QemuLoader.h" needs the QEMU_FW_CFG_FNAME_SIZE macro. This macro used to
live in the QemuFwCfgLib class header, but we moved it to the more
foundational IndustryStandard include file called "QemuFwCfg.h" in commit
5583a8a4ffd0 ("OvmfPkg/QemuFwCfgLib: move types/macros from lib class to
IndustryStandard", 2017-02-22).
Replace the lib class dependency with the more basic IndustryStandard
dependency in "QemuLoader.h".
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Philippe Mathieu-Daudé <philmd@redhat.com>
Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2122
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Message-Id: <20210526201446.12554-9-lersek@redhat.com>
Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'OvmfPkg/AcpiPlatformDxe')
-rw-r--r-- | OvmfPkg/AcpiPlatformDxe/QemuLoader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OvmfPkg/AcpiPlatformDxe/QemuLoader.h b/OvmfPkg/AcpiPlatformDxe/QemuLoader.h index bb3978e900..5782a23c43 100644 --- a/OvmfPkg/AcpiPlatformDxe/QemuLoader.h +++ b/OvmfPkg/AcpiPlatformDxe/QemuLoader.h @@ -11,7 +11,7 @@ #define QEMU_LOADER_H_
#include <Base.h>
-#include <Library/QemuFwCfgLib.h>
+#include <IndustryStandard/QemuFwCfg.h>
//
// The types and the documentation reflects the SeaBIOS interface.
|