Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60671 )
Change subject: ec/quanta/ene_kb3940q/acpi: Replace LLess(a,b) with ASL 2.0 syntax ......................................................................
ec/quanta/ene_kb3940q/acpi: Replace LLess(a,b) with ASL 2.0 syntax
Replace `LLess(a, b)` with `a < b`.
Change-Id: Ic04ce82fbfd36bbd2e0cfda1a92ca0a18e1fcd73 Signed-off-by: Felix Singer felixsinger@posteo.net --- M src/ec/quanta/ene_kb3940q/acpi/ec.asl 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/60671/1
diff --git a/src/ec/quanta/ene_kb3940q/acpi/ec.asl b/src/ec/quanta/ene_kb3940q/acpi/ec.asl index 1f1cf97..9294e1b 100644 --- a/src/ec/quanta/ene_kb3940q/acpi/ec.asl +++ b/src/ec/quanta/ene_kb3940q/acpi/ec.asl @@ -179,7 +179,7 @@ Store(_SB.CP00._PPC, Local0) Local1 = PPCM - 1
- If(LLess(Local0, Local1)) { + If(Local0 < Local1) { Local0++ \PPCN () }