From: Bin Meng Date: Sat, 7 May 2016 14:46:19 +0000 (-0700) Subject: acpi: Output all errors/warnings/remarks when compiling ASL X-Git-Tag: KARO-TXSD-2017-03-15~1016^2~65 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5dafcb8f7d73a844f9f0b14054b1dfe4586238eb;p=karo-tx-uboot.git acpi: Output all errors/warnings/remarks when compiling ASL Remove -va option when invoking IASL compiler so that we can see errors/warnings/remarks in the build log. Signed-off-by: Bin Meng Reviewed-by: Stefan Roese Tested-by: Stefan Roese Reviewed-by: Simon Glass --- diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 5f0b0501e3..44534e1624 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -326,7 +326,7 @@ $(obj)/%.S: $(src)/%.ttf quiet_cmd_acpi_c_asl= ASL $< cmd_acpi_c_asl= \ $(CPP) -x assembler-with-cpp -P $(UBOOTINCLUDE) -o $<.tmp $<; \ - iasl -p $< -tc -va $<.tmp; \ + iasl -p $< -tc $<.tmp; \ mv $(patsubst %.asl,%.hex,$<) $@ $(obj)/dsdt.c: $(src)/dsdt.asl