diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2021-11-18 07:49:43 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2022-01-27 16:52:30 +0000 |
commit | 5d48e783411caf5f9bf269b36586e129e30e511b (patch) | |
tree | cc4feb75919182e5069666b75ea1089da3a446b1 /Makefile.inc | |
parent | 0015df59276b79f974be498ad606a5b3fbc20636 (diff) |
Makefile.inc: Don't ignore IASL's "multiple types" warning
Intel Lynx Point ASL code is fixed. So don't ignore
"Multiple types (Device object requires either a _HID or _ADR, but not both)"
warning.
Change-Id: Ie9398879a76ad3d36454772a1c23da083af14b59
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59415
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Makefile.inc b/Makefile.inc index 1c76a916ea..beb7f0e531 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -263,17 +263,9 @@ EMPTY_RESOURCE_TEMPLATE_WARNING = 3150 # Redundant offset remarks are not useful in any way and are masking useful # ones that might indicate an issue so it is better to hide them. REDUNDANT_OFFSET_REMARK = 2158 -# Ignore _HID & _ADR coexisting in Intel Lynxpoint ASL code. -# See cb:38802 -# "Multiple types (Device object requires either a _HID or _ADR, but not both)" -MULTIPLE_TYPES_WARNING = 3073 IASL_WARNINGS_LIST = $(EMPTY_RESOURCE_TEMPLATE_WARNING) $(REDUNDANT_OFFSET_REMARK) -ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_LYNXPOINT),y) -IASL_WARNINGS_LIST += $(MULTIPLE_TYPES_WARNING) -endif - IGNORED_IASL_WARNINGS = $(addprefix -vw , $(IASL_WARNINGS_LIST)) define asl_template |