Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/60591 )
Change subject: ec/quanta/ene_kb3940q/acpi: Replace Decrement() with ASL 2.0 syntax ......................................................................
ec/quanta/ene_kb3940q/acpi: Replace Decrement() with ASL 2.0 syntax
Replace `Decrement (a)` with `a--`.
Change-Id: I2105c22d15d4f078270911a7fa7290b3a9b6b841 Signed-off-by: Felix Singer felixsinger@posteo.net Reviewed-on: https://review.coreboot.org/c/coreboot/+/60591 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: HAOUAS Elyes ehaouas@noos.fr --- M src/ec/quanta/ene_kb3940q/acpi/ec.asl 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified HAOUAS Elyes: Looks good to me, approved
diff --git a/src/ec/quanta/ene_kb3940q/acpi/ec.asl b/src/ec/quanta/ene_kb3940q/acpi/ec.asl index 12f0809..1f1cf97 100644 --- a/src/ec/quanta/ene_kb3940q/acpi/ec.asl +++ b/src/ec/quanta/ene_kb3940q/acpi/ec.asl @@ -194,7 +194,7 @@ Store(_SB.CP00._PPC, Local0)
If(Local0) { - Decrement(Local0) + Local0-- \PPCN () }
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one.