summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2022-11-13 20:37:19 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-11-18 00:14:13 +0000
commit457f77be37e73e6a06f7cc0c16f14bc462b682f9 (patch)
treea0dc87cc3d453f4b32bf79a6742829c8a8bff060 /Makefile.inc
parent35e09ec8ae5557bd4e458ef5e3c9de8bfa117aac (diff)
downloadcoreboot-457f77be37e73e6a06f7cc0c16f14bc462b682f9.tar.gz
coreboot-457f77be37e73e6a06f7cc0c16f14bc462b682f9.tar.bz2
coreboot-457f77be37e73e6a06f7cc0c16f14bc462b682f9.zip
Makefile.inc: Remove workaround ACPI warnings
No boards now have a missing dependency so remove the workaround. Change-Id: I787f6aa588175ba620a068918c42edc9d257c3ef Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69514 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'Makefile.inc')
-rw-r--r--Makefile.inc17
1 files changed, 0 insertions, 17 deletions
diff --git a/Makefile.inc b/Makefile.inc
index 563a2bca374e..b4c2cdfe926e 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -265,26 +265,9 @@ endef
# ResourceTemplate is the correct code.
# As it's valid ASL, disable the warning.
EMPTY_RESOURCE_TEMPLATE_WARNING = 3150
-# IASL compiler check for usage of _CRS, _DIS, _PRS, and _SRS objects:
-# 1) If _PRS is present, must have _CRS and _SRS
-# 2) If _SRS is present, must have _PRS (_PRS requires _CRS and _SRS)
-# 3) If _DIS is present, must have _SRS (_SRS requires _PRS, _PRS requires _CRS and _SRS)
-# 4) If _SRS is present, probably should have a _DIS (Remark only)
-# A warning will be issued for each of these cases.
-# For existing ASL code, ignore this warnings
-IASL_MISSING_DEPENDENCY = 3141
IASL_WARNINGS_LIST = $(EMPTY_RESOURCE_TEMPLATE_WARNING)
-ifeq ($(CONFIG_IGNORE_IASL_MISSING_DEPENDENCY),y)
- IASL_WARNINGS_LIST += $(IASL_MISSING_DEPENDENCY)
-build_complete::
- printf "*** WARNING: The ASL code for this platform is incomplete. Please fix it. ***\n"
- printf "*** If _PRS is present, must have _CRS and _SRS ***\n"
- printf "*** If _SRS is present, must have _PRS and _CRS ***\n"
- printf "*** If _DIS is present, must have _SRS, _PRS and _CRS ***\n"
-endif
-
IGNORED_IASL_WARNINGS = $(addprefix -vw , $(IASL_WARNINGS_LIST))
define asl_template