Makefile.inc: Don't ignore _HID & _ADR coexisting in Broadwell ASL code

Issue fixed in commit d152837 so don't allow use of _HID and _ADR at same time.

Change-Id: I52beba66230a3542a7039f496b51be0aa4bdcce4
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50384
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes HAOUAS 2021-02-08 10:25:03 +01:00 committed by Patrick Georgi
parent 90c27e9611
commit 1493e2d6ee
1 changed files with 3 additions and 3 deletions

View File

@ -259,14 +259,14 @@ EMPTY_RESOURCE_TEMPLATE_WARNING = 3150
# Redundant offset remarks are not useful in any way and are masking useful # 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. # ones that might indicate an issue so it is better to hide them.
REDUNDANT_OFFSET_REMARK = 2158 REDUNDANT_OFFSET_REMARK = 2158
# Ignore _HID & _ADR coexisting in Intel Lynxpoint and Broadwell ASL code. # Ignore _HID & _ADR coexisting in Intel Lynxpoint ASL code.
# See cb:38803 & cb:38802 # See cb:38802
# "Multiple types (Device object requires either a _HID or _ADR, but not both)" # "Multiple types (Device object requires either a _HID or _ADR, but not both)"
MULTIPLE_TYPES_WARNING = 3073 MULTIPLE_TYPES_WARNING = 3073
IASL_WARNINGS_LIST = $(EMPTY_RESOURCE_TEMPLATE_WARNING) $(REDUNDANT_OFFSET_REMARK) IASL_WARNINGS_LIST = $(EMPTY_RESOURCE_TEMPLATE_WARNING) $(REDUNDANT_OFFSET_REMARK)
ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_LYNXPOINT)$(CONFIG_SOC_INTEL_BROADWELL),y) ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_LYNXPOINT),y)
IASL_WARNINGS_LIST += $(MULTIPLE_TYPES_WARNING) IASL_WARNINGS_LIST += $(MULTIPLE_TYPES_WARNING)
endif endif