Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/60592 )
Change subject: ec/quanta/it8518/acpi: Replace Decrement() with ASL 2.0 syntax ......................................................................
ec/quanta/it8518/acpi: Replace Decrement() with ASL 2.0 syntax
Replace `Decrement (a)` with `a--`.
Change-Id: Ibf5bdb1b3c2524194089b27a8af61b84f517e117 Signed-off-by: Felix Singer felixsinger@posteo.net Reviewed-on: https://review.coreboot.org/c/coreboot/+/60592 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: HAOUAS Elyes ehaouas@noos.fr --- M src/ec/quanta/it8518/acpi/battery.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/it8518/acpi/battery.asl b/src/ec/quanta/it8518/acpi/battery.asl index 9c48442..5b51c89 100644 --- a/src/ec/quanta/it8518/acpi/battery.asl +++ b/src/ec/quanta/it8518/acpi/battery.asl @@ -67,7 +67,7 @@ { // EC Is not ready Sleep (5) - Decrement (Local0) + Local0-- If (LEqual (Local0, Zero)) { Break
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one.