ec/hp/kbc1126/acpi: Use ASL 2.0 syntax to access arrays

Replace Index(FOO, 1337) with FOO[1337].

Change-Id: Ie499f27acd13569095749e095d7898890da6985d
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60458
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
Felix Singer 2021-12-29 14:10:38 +01:00
parent 38ac171ddd
commit c93781f96e
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ Method (\ISTR, 2, Serialized)
{
Local1--
Divide (Local0, 10, Local2, Local0)
Add (Local2, 48, Index (NUMB, Local1))
Add (Local2, 48, NUMB[Local1])
}
ToString (NUMB, Arg1, Local3)
Return (Local3)