diff options
author | Moritz Fischer | 2022-02-05 12:17:45 -0800 |
---|---|---|
committer | Simon Glass | 2022-02-09 12:30:13 -0700 |
commit | 058fb9f5ffc422f987c33adb01f8fa6e4434eff8 (patch) | |
tree | 74c1e5bf3e09f183f1f32cb6a0d21ac167b267aa /lib/acpi/Makefile | |
parent | ab2ffe735979b5e6ef417adbd6019fa603de1715 (diff) |
acpi: Move MCFG implementation to common lib
MCFG tables are used on multiple arches. Move to common ACPI lib.
Cc: Simon Glass <sjg@chromium.org>
Signed-off-by: Moritz Fischer <moritzf@google.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Use sizeof(*mcfg) instead of sizeof(*header)
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/acpi/Makefile')
-rw-r--r-- | lib/acpi/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/acpi/Makefile b/lib/acpi/Makefile index f9b504988f2..956b5a0d726 100644 --- a/lib/acpi/Makefile +++ b/lib/acpi/Makefile @@ -11,6 +11,7 @@ obj-y += acpi_writer.o ifndef CONFIG_QEMU obj-y += base.o obj-y += csrt.o +obj-y += mcfg.o # Sandbox does not build a .asl file ifndef CONFIG_SANDBOX |