From 9f5f793e67db0904e814a289c927c5405a64d172 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Sun, 2 Jan 2022 02:22:40 +0100 Subject: mb/google/slippy/acpi: Replace LGreaterEqual(a,b) with ASL 2.0 syntax Replace `LGreaterEqual(a, b)` with `a >= b`. Change-Id: I5c16893b9c98f36fd2c210ed301c2ebb65f95368 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/60692 Tested-by: build bot (Jenkins) Reviewed-by: Sean Rhodes --- src/mainboard/google/slippy/acpi/thermal.asl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainboard/google/slippy/acpi/thermal.asl b/src/mainboard/google/slippy/acpi/thermal.asl index 176b08dcd2..3f9b5742ce 100644 --- a/src/mainboard/google/slippy/acpi/thermal.asl +++ b/src/mainboard/google/slippy/acpi/thermal.asl @@ -102,7 +102,7 @@ Scope (\_TZ) // Critical temperature in deci-kelvin Store (CTOK (\TCRT), Local1) - If (LGreaterEqual (Local0, Local1)) { + If (Local0 >= Local1) { Printf ("CRITICAL TEMPERATURE: %o", Local0) // Wait 1 second for EC to re-poll -- cgit v1.2.3