diff options
author | Felix Singer <felix.singer@secunet.com> | 2021-07-26 18:03:33 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2021-07-28 13:46:32 +0000 |
commit | 5b53d3e233cae57a9eeea506d025febf0aac7c10 (patch) | |
tree | 4887411b14dc8702101e566612a008a5bf054a27 /src/ec/roda/it8518/acpi | |
parent | 48d064bf9bc7a02ee8a5a42721e094b525a5a98b (diff) |
ec/roda/it8518/acpi: Get rid of `Index()`
Use `FOOO[1337]` instead of `Index(FOOO, 1337)`.
Built roda/rw11 with `BUILD_TIMELESS=1` and coreboot.rom remains the
same.
Change-Id: I4f5d5cb8ce8c3ae37dc44ca87bd67596af9feee8
Signed-off-by: Felix Singer <felix.singer@secunet.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56604
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/ec/roda/it8518/acpi')
-rw-r--r-- | src/ec/roda/it8518/acpi/battery.asl | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ec/roda/it8518/acpi/battery.asl b/src/ec/roda/it8518/acpi/battery.asl index 12295a201c..2859fcef29 100644 --- a/src/ec/roda/it8518/acpi/battery.asl +++ b/src/ec/roda/it8518/acpi/battery.asl @@ -62,9 +62,9 @@ Device (BAT0) { Printf ("-----> BAT0: _BIF") - Store (B0FC, Index (PBIF, 2)) - Store (Divide (Multiply (B0FC, 6), 100), Index (PBIF, 5)) - Store (Divide (Multiply (B0FC, 3), 100), Index (PBIF, 6)) + Store (B0FC, PBIF[2]) + Store (Divide (Multiply (B0FC, 6), 100), PBIF[5]) + Store (Divide (Multiply (B0FC, 3), 100), PBIF[6]) Printf ("<----- BAT0: _BIF") @@ -81,16 +81,16 @@ Device (BAT0) { If (LEqual (PWRS, 1)) { - Store (0x00, Index (PBST, 0)) + Store (0x00, PBST[0]) } Else { - Store (0x01, Index (PBST, 0)) + Store (0x01, PBST[0]) } } Else { - Store (0x02, Index (PBST, 0)) + Store (0x02, PBST[0]) } Store (B0AC, Local1) @@ -99,9 +99,9 @@ Device (BAT0) Subtract (0x00010000, Local1, Local1) } - Store (Local1, Index (PBST, 1)) - Store (B0RC, Index (PBST, 2)) - Store (B0VT, Index (PBST, 3)) + Store (Local1, PBST[1]) + Store (B0RC, PBST[2]) + Store (B0VT, PBST[3]) Printf ("<----- BAT0: _BST") |