Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/60583 )
Change subject: ec/quanta/it8518/acpi: Replace Increment() with ASL 2.0 syntax
......................................................................
ec/quanta/it8518/acpi: Replace Increment() with ASL 2.0 syntax
Replace `Increment(a)` with `a++`.
Change-Id: I5de24042a1a69975c980f6ef10babf6f478b8d69
Signed-off-by: Felix Singer <felixsinger(a)posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60583
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas(a)noos.fr>
---
M src/ec/quanta/it8518/acpi/ec.asl
1 file changed, 1 insertion(+), 2 deletions(-)
Approvals:
build bot (Jenkins): Verified
HAOUAS Elyes: Looks good to me, approved
diff --git a/src/ec/quanta/it8518/acpi/ec.asl b/src/ec/quanta/it8518/acpi/ec.asl
index ea6f730..3d1e244 100644
--- a/src/ec/quanta/it8518/acpi/ec.asl
+++ b/src/ec/quanta/it8518/acpi/ec.asl
@@ -556,8 +556,7 @@
// TODO Which temperature corresponds to the CPU?
Store (TMP0, Local0)
/* So that we don't get a warning that Local0 is unused. */
- Increment (Local0)
-
+ Local0++
}
/* Attention Codes
--
To view, visit https://review.coreboot.org/c/coreboot/+/60583
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I5de24042a1a69975c980f6ef10babf6f478b8d69
Gerrit-Change-Number: 60583
Gerrit-PatchSet: 2
Gerrit-Owner: Felix Singer <felixsinger(a)posteo.net>
Gerrit-Reviewer: Felix Singer <felixsinger(a)posteo.net>
Gerrit-Reviewer: HAOUAS Elyes <ehaouas(a)noos.fr>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: merged