From 5c8a94ae9effa4612f34c1c774265a540f0e87f0 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Mon, 12 Dec 2022 00:18:26 +0100 Subject: ec/lenovo/h8/acpi: Replace LLessEqual(a,b) with ASL 2.0 syntax Replace `LLessEqual (a, b)` with `a <= b`. Change-Id: I76855f9d4564fc08cd70456e2a0b1514cd73e35f Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/70620 Reviewed-by: Eric Lai Tested-by: build bot (Jenkins) --- src/ec/lenovo/h8/acpi/thermal.asl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ec/lenovo/h8/acpi') diff --git a/src/ec/lenovo/h8/acpi/thermal.asl b/src/ec/lenovo/h8/acpi/thermal.asl index bdc06425b4..3d4b718a96 100644 --- a/src/ec/lenovo/h8/acpi/thermal.asl +++ b/src/ec/lenovo/h8/acpi/thermal.asl @@ -13,7 +13,7 @@ Scope(\_TZ) { Local0 = Arg0 * 10 Local0 += 2732 - if (LLessEqual(Local0, 2732)) { + if (Local0 <= 2732) { Return (3000) } -- cgit v1.2.3