aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-12-31 10:53:49 +0100
committerFelix Singer <felixsinger@posteo.net>2022-01-01 13:59:27 +0000
commit34fe2ba4472ad7ca59414edb0086e878fe51f1ac (patch)
treeec98f44cd74385115f47c79184fc3ac34cc1f200
parent621744b85fd5c53fa2bd4fd572a852d7c603fcae (diff)
arch/x86/acpi: Replace Index() with ASL 2.0 syntax
Replace `Index (FOO, 0)` with `FOO[0]`. Change-Id: Ief0f855a449d67542d6b1b56a2b76919c4cb8e2c Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60562 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/arch/x86/acpi/globutil.asl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/x86/acpi/globutil.asl b/src/arch/x86/acpi/globutil.asl
index 25feaeac5c..3a7144d3a5 100644
--- a/src/arch/x86/acpi/globutil.asl
+++ b/src/arch/x86/acpi/globutil.asl
@@ -41,8 +41,8 @@ Method(SCMP, 2)
Store(MIN(Local5, Local6), Local7)
While(LLess(Local4, Local7)) {
- Store(Derefof(Index(Local0, Local4)), Local2)
- Store(Derefof(Index(Local1, Local4)), Local3)
+ Store(Derefof(Local0[Local4]), Local2)
+ Store(Derefof(Local1[Local4]), Local3)
if (LGreater(Local2, Local3)) {
Return(One)
} else {
@@ -78,8 +78,8 @@ Method(WCMP, 2)
Store(SLEN(Arg1), Local3)
While(LLess(Local2, Local3)) {
- if (LNotEqual(Derefof(Index(Local0, Local2)),
- Derefof(Index(Local1, Local2)))) {
+ if (LNotEqual(Derefof(Local0[Local2]),
+ Derefof(Local1[Local2]))) {
Return(0)
}
Increment(Local2)