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@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