Wim Vervoorn has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38428 )
Change subject: soc/intel/skylake/acpi/dptf/thermal.asl: Prevent iasl remarks ......................................................................
soc/intel/skylake/acpi/dptf/thermal.asl: Prevent iasl remarks
Prevent iasl remarks about unused parameters.
BUG=N/A TEST=build
Change-Id: I54fa4712e618038fdd5a96c2012c2ec64ca34706 Signed-off-by: Wim Vervoorn wvervoorn@eltan.com --- M src/soc/intel/skylake/acpi/dptf/thermal.asl 1 file changed, 5 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/28/38428/1
diff --git a/src/soc/intel/skylake/acpi/dptf/thermal.asl b/src/soc/intel/skylake/acpi/dptf/thermal.asl index 742b092..a63bd8a 100644 --- a/src/soc/intel/skylake/acpi/dptf/thermal.asl +++ b/src/soc/intel/skylake/acpi/dptf/thermal.asl @@ -91,6 +91,11 @@ Return (CTOK (Arg0)) } Else { #endif +#ifndef EC_ENABLE_MULTIPLE_DPTF_PROFILES + /* Prevent iasl remarks about unused parameters */ + Store( Arg0, Local0) + Store( Local0, Arg0) +#endif Return (CTOK (Arg1)) #ifdef EC_ENABLE_MULTIPLE_DPTF_PROFILES }