From a02b77a96ba129fdb2640e022c6d64f179526319 Mon Sep 17 00:00:00 2001 From: Frans Hendriks Date: Thu, 31 Mar 2022 09:39:13 +0200 Subject: [PATCH] IASL: Correct warning message for IASL missing dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Warning for _SRS includes _SRS. Warning for _DIS includes must have _SRS twice. Remove requirement _SRS for _SRS is present. Removed second _SRS for _DIS is present. BUG=N/A TEST=Verify correct message on built of facebook FBG1701 Change-Id: I1be740354b159e931e41323aef14e160cc09af19 Signed-off-by: Frans Hendriks ยด Reviewed-on: https://review.coreboot.org/c/coreboot/+/63250 Reviewed-by: Erik van den Bogaert Reviewed-by: Angel Pons Tested-by: build bot (Jenkins) --- Makefile.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.inc b/Makefile.inc index f746ef920a..6b1c45cf57 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -277,8 +277,8 @@ ifeq ($(CONFIG_IGNORE_IASL_MISSING_DEPENDENCY),y) 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, _CRS, and _SRS ***\n" - printf "*** If _DIS is present, must have _SRS, _PRS, _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))