mb/google/kahlee/acpi: Replace Index() with ASL 2.0 syntax

Replace `Index (FOO, 0)` with `FOO[0]`.

Change-Id: I81a2d63db3e3575acd91ea99e1490701889b896f
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60560
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-31 10:45:56 +01:00
parent 291ba82acf
commit 0d92ec872f
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ Method (_PTS, 1)
/* Clear wake status structure. */
Store (0, PEWD)
Store (0, Index(WKST,0))
Store (0, Index(WKST,1))
Store (0, WKST[0])
Store (0, WKST[1])
Store (7, UPWS)
}