diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-12-29 13:56:36 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2021-12-30 14:26:18 +0000 |
commit | e55a7d160b4bc975da55ddf27e4e8e4f8447ad85 (patch) | |
tree | 24e9fd271cf6d6aa2f6f5fca10b67a196d74c283 | |
parent | c13aea6810f352b24cf6a61350b81524b9b719d3 (diff) |
drivers/intel/gma/acpi: Use ASL 2.0 syntax to access arrays
Replace Index(FOO, 1337) with FOO[1337].
Change-Id: I534c1581e587908feeb06fd7725c5895649dcfb1
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60456
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
-rw-r--r-- | src/drivers/intel/gma/acpi/common.asl | 4 | ||||
-rw-r--r-- | src/drivers/intel/gma/acpi/configure_brightness_levels.asl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/drivers/intel/gma/acpi/common.asl b/src/drivers/intel/gma/acpi/common.asl index 79960e1586..254a66d605 100644 --- a/src/drivers/intel/gma/acpi/common.asl +++ b/src/drivers/intel/gma/acpi/common.asl @@ -42,7 +42,7 @@ { Decrement (Local0) } - XBCM (DerefOf (Index (BRIG, Local0))) + XBCM (DerefOf (BRIG[Local0])) } } @@ -60,6 +60,6 @@ { Increment (Local0) } - XBCM (DerefOf (Index (BRIG, Local0))) + XBCM (DerefOf (BRIG[Local0])) } } diff --git a/src/drivers/intel/gma/acpi/configure_brightness_levels.asl b/src/drivers/intel/gma/acpi/configure_brightness_levels.asl index 0ab93d803a..92ae766661 100644 --- a/src/drivers/intel/gma/acpi/configure_brightness_levels.asl +++ b/src/drivers/intel/gma/acpi/configure_brightness_levels.asl @@ -123,8 +123,8 @@ Store (2, Local1) While (LLess (Local1, Subtract (SizeOf (BRIG), 1))) { /* Local[23]: adjacent values in BRIG */ - Store (DeRefOf (Index (BRIG, Local1)), Local2) - Store (DeRefOf (Index (BRIG, Add (Local1, 1))), Local3) + Store (DeRefOf (BRIG[Local1]), Local2) + Store (DeRefOf (BRIG[Add (Local1, 1)]), Local3) If (LLess (Local0, Local3)) { If (LOr (LLess (Local0, Local2), |