Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60487 )
Change subject: mb/roda/rk9/acpi: Replace Add(a,b,c) with ASL 2.0 syntax ......................................................................
mb/roda/rk9/acpi: Replace Add(a,b,c) with ASL 2.0 syntax
Replace `Add (a, b, c)` with `c = a + b`.
Change-Id: If2bb935570b1cb2b7a5e4168d594d735f343369b Signed-off-by: Felix Singer felixsinger@posteo.net --- M src/mainboard/roda/rk9/acpi/thermal.asl 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/87/60487/1
diff --git a/src/mainboard/roda/rk9/acpi/thermal.asl b/src/mainboard/roda/rk9/acpi/thermal.asl index 5c29846..709c912 100644 --- a/src/mainboard/roda/rk9/acpi/thermal.asl +++ b/src/mainboard/roda/rk9/acpi/thermal.asl @@ -6,7 +6,7 @@ { /* degree Celsius to deci-Kelvin (ACPI temperature unit) */ Method(C2dK, 1) { - Add (2732, Multiply (Arg0, 10), Local0) + Local0 = 2732 + Multiply (Arg0, 10) Return (Local0) }