Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60692 )
Change subject: mb/google/slippy/acpi: Replace LGreaterEqual(a,b) with ASL 2.0 syntax
......................................................................
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(a)posteo.net>
---
M src/mainboard/google/slippy/acpi/thermal.asl
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/92/60692/1
diff --git a/src/mainboard/google/slippy/acpi/thermal.asl b/src/mainboard/google/slippy/acpi/thermal.asl
index e01195f..bb90ae2 100644
--- a/src/mainboard/google/slippy/acpi/thermal.asl
+++ b/src/mainboard/google/slippy/acpi/thermal.asl
@@ -102,7 +102,7 @@
// 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
--
To view, visit https://review.coreboot.org/c/coreboot/+/60692
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I5c16893b9c98f36fd2c210ed301c2ebb65f95368
Gerrit-Change-Number: 60692
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Singer <felixsinger(a)posteo.net>
Gerrit-MessageType: newchange