ec/google/chromeec/acpi: Replace Multiply(a,b,c) with ASL 2.0 syntax

Replace `Multiply (a, b, c)` with `c = a * b`.

Change-Id: Iea86e77df6c76756ed336f57a906ac0757aef1cf
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60647
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
This commit is contained in:
Felix Singer 2022-01-01 23:36:28 +01:00 committed by Paul Fagerburg
parent 81623fbd96
commit 89818d1da7
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ Device (EC0)
Local0 += \_SB.PCI0.LPCB.EC0.TOFS Local0 += \_SB.PCI0.LPCB.EC0.TOFS
/* Convert to 1/10 Kelvin */ /* Convert to 1/10 Kelvin */
Multiply (Local0, 10, Local0) Local0 *= 10
Return (Local0) Return (Local0)
} }