Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60646 )
Change subject: ec/lenovo/h8/acpi: Replace Multiply(a,b,c) with ASL 2.0 syntax ......................................................................
ec/lenovo/h8/acpi: Replace Multiply(a,b,c) with ASL 2.0 syntax
Replace `Multiply (a, b, c)` with `c = a * b`.
Change-Id: Idfc08803946cc2d4537db4be8d1bc07e48aa6fed Signed-off-by: Felix Singer felixsinger@posteo.net --- M src/ec/lenovo/h8/acpi/thermal.asl 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/46/60646/1
diff --git a/src/ec/lenovo/h8/acpi/thermal.asl b/src/ec/lenovo/h8/acpi/thermal.asl index 85cfdb5..d8346a1 100644 --- a/src/ec/lenovo/h8/acpi/thermal.asl +++ b/src/ec/lenovo/h8/acpi/thermal.asl @@ -11,7 +11,7 @@
Method(C2K, 1, NotSerialized) { - Multiply(Arg0, 10, Local0) + Local0 = Arg0 * 10 Local0 += 2732 if (LLessEqual(Local0, 2732)) { Return (3000)