aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-01-02 02:22:40 +0100
committerFelix Singer <felixsinger@posteo.net>2022-06-09 09:10:14 +0000
commit9f5f793e67db0904e814a289c927c5405a64d172 (patch)
tree09e049657a2acd2e884ec9a2e0b13cf0dd00021c
parentdb2fdc298c72b8d5791e1c60aee619287fbca62f (diff)
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 <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60692 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Sean Rhodes <sean@starlabs.systems>
-rw-r--r--src/mainboard/google/slippy/acpi/thermal.asl2
1 files changed, 1 insertions, 1 deletions
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