src: Ignore Redundant offset remarks in ASL code
IASL reports unnecessary/redundant use of offset operator. These messages are only masking usefull messages. Add -vw 2158 so this message isn't reported. BUG=N/A TEST=build Change-Id: Ie8507d3b3cb6f2e75cb87cd3e4bcc4280df27f77 Signed-off-by: Wim Vervoorn <wvervoorn@eltan.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36857 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
47bf498681
commit
556cc26337
|
@ -258,7 +258,10 @@ endef
|
||||||
# ResourceTemplate is the correct code.
|
# ResourceTemplate is the correct code.
|
||||||
# As it's valid ASL, disable the warning.
|
# As it's valid ASL, disable the warning.
|
||||||
EMPTY_RESOURCE_TEMPLATE_WARNING = 3150
|
EMPTY_RESOURCE_TEMPLATE_WARNING = 3150
|
||||||
IGNORED_IASL_WARNINGS = -vw $(EMPTY_RESOURCE_TEMPLATE_WARNING)
|
# 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
|
||||||
|
IGNORED_IASL_WARNINGS = -vw $(EMPTY_RESOURCE_TEMPLATE_WARNING) -vw $(REDUNDANT_OFFSET_REMARK)
|
||||||
|
|
||||||
define asl_template
|
define asl_template
|
||||||
$(CONFIG_CBFS_PREFIX)/$(1).aml-file = $(obj)/$(1).aml
|
$(CONFIG_CBFS_PREFIX)/$(1).aml-file = $(obj)/$(1).aml
|
||||||
|
|
Loading…
Reference in New Issue