summaryrefslogtreecommitdiff
path: root/lib/acpi/Makefile
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-12-01 19:02:51 +0300
committerSimon Glass <sjg@chromium.org>2022-01-25 21:44:36 +0300
commita53d38f80a1b7833a7efad6412fbd0b17cc33a99 (patch)
tree85eff932833cf3db206f243458ef1530d80d427c /lib/acpi/Makefile
parent94ba15a3f13ff5b510d426d13854014bb9cb4713 (diff)
downloadu-boot-a53d38f80a1b7833a7efad6412fbd0b17cc33a99.tar.xz
x86: Move FACS table to a writer function
Move this table over to use a writer function, moving the code from the x86 implementation. Add a pointer to the DSDT in struct acpi_ctx so we can reference it later. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/acpi/Makefile')
-rw-r--r--lib/acpi/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/acpi/Makefile b/lib/acpi/Makefile
index 4674a9287f..9f70fe69d3 100644
--- a/lib/acpi/Makefile
+++ b/lib/acpi/Makefile
@@ -10,4 +10,5 @@ obj-y += acpi_writer.o
# With QEMU the ACPI tables come from there, not from U-Boot
ifndef CONFIG_QEMU
obj-y += base.o
+obj-y += facs.o
endif