aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-12-31 12:00:02 +0100
committerFelix Singer <felixsinger@posteo.net>2022-01-01 14:00:48 +0000
commit2f79a838dbeba269f0ab12db4fb88c8a948c2274 (patch)
treea966bb8f1526b02254cf4160cf9df60a9544c0bd
parent3dc8f56a18912f63b5c06996b24b82466ee8cb84 (diff)
mb/roda/rk9/acpi: Replace Multiply(a,b) with ASL 2.0 syntax
Replace `Multiply (a, b)` with `a * b`. Change-Id: I8697f62cf5627ace8c4eac0caec7962171bb3541 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60567 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/mainboard/roda/rk9/acpi/thermal.asl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/roda/rk9/acpi/thermal.asl b/src/mainboard/roda/rk9/acpi/thermal.asl
index 709c9128cd..9bf50d9cf6 100644
--- a/src/mainboard/roda/rk9/acpi/thermal.asl
+++ b/src/mainboard/roda/rk9/acpi/thermal.asl
@@ -6,7 +6,7 @@ Scope (\_TZ)
{
/* degree Celsius to deci-Kelvin (ACPI temperature unit) */
Method(C2dK, 1) {
- Local0 = 2732 + Multiply (Arg0, 10)
+ Local0 = 2732 + Arg0 * 10
Return (Local0)
}