aboutsummaryrefslogtreecommitdiff
path: root/lib/acpi
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-12-01 09:02:43 -0700
committerSimon Glass <sjg@chromium.org>2022-01-25 11:44:36 -0700
commit437992d3a936299226b7f0b27d38319b45d4a9e5 (patch)
tree41178d9168de21022b66fbce6e97026a30820f0b /lib/acpi
parenta9e414dd50c57113f810812af1fd1d1f502b3f57 (diff)
downloadu-boot-437992d3a936299226b7f0b27d38319b45d4a9e5.zip
u-boot-437992d3a936299226b7f0b27d38319b45d4a9e5.tar.gz
u-boot-437992d3a936299226b7f0b27d38319b45d4a9e5.tar.bz2
acpi: Use finer-grained control of ACPI-table generation
Rather than keying everything off ACPIGEN, use the main GENERATE_ACPI_TABLE option to determine whether the core ACPI code is included. Make sure these option are not enabled in SPL/TPL since we never generate tables there. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/acpi')
-rw-r--r--lib/acpi/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/acpi/Makefile b/lib/acpi/Makefile
index 5c2f793..f5d58ab 100644
--- a/lib/acpi/Makefile
+++ b/lib/acpi/Makefile
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: GPL-2.0+
#
-obj-y += acpigen.o
-obj-y += acpi_device.o
-obj-y += acpi_dp.o
-obj-y += acpi_table.o
+obj-$(CONFIG_$(SPL_)ACPIGEN) += acpigen.o
+obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_device.o
+obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_dp.o
+obj-$(CONFIG_$(SPL_)ACPIGEN) += acpi_table.o