From 70f59e28a067114d23cd7d75fe50db8baeb0e6d9 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Fri, 31 Dec 2021 14:02:52 +0100 Subject: [PATCH] ec/quanta/ene_kb3940q/acpi: Replace Increment() with ASL 2.0 syntax Replace `Increment(a)` with `a++`. Change-Id: Ic009a868e98cc23dff16154244d65080c1edfa22 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/60584 Tested-by: build bot (Jenkins) Reviewed-by: HAOUAS Elyes --- src/ec/quanta/ene_kb3940q/acpi/ec.asl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ec/quanta/ene_kb3940q/acpi/ec.asl b/src/ec/quanta/ene_kb3940q/acpi/ec.asl index 6d22f9a3f1..12f0809d99 100644 --- a/src/ec/quanta/ene_kb3940q/acpi/ec.asl +++ b/src/ec/quanta/ene_kb3940q/acpi/ec.asl @@ -180,7 +180,7 @@ Device (EC0) Local1 = PPCM - 1 If(LLess(Local0, Local1)) { - Increment(Local0) + Local0++ \PPCN () }