summaryrefslogtreecommitdiff
path: root/src/ec/google/chromeec/acpi/battery.asl
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-12-29 14:02:47 +0100
committerFelix Singer <felixsinger@posteo.net>2021-12-30 14:27:02 +0000
commit38ac171dddce2147f52dc55cbdc9931f94e55ce5 (patch)
tree2aa20ae41ce89228845cfda234d28b06ccb9768f /src/ec/google/chromeec/acpi/battery.asl
parente55a7d160b4bc975da55ddf27e4e8e4f8447ad85 (diff)
downloadcoreboot-38ac171dddce2147f52dc55cbdc9931f94e55ce5.tar.gz
ec/google/chromeec/acpi: Use ASL 2.0 syntax to access arrays
Replace Index(FOO, 1337) with FOO[1337]. Change-Id: I2fb96e338b332f4fbb3bd23fb07bb1ca36c19c49 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60457 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/ec/google/chromeec/acpi/battery.asl')
-rw-r--r--src/ec/google/chromeec/acpi/battery.asl42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/ec/google/chromeec/acpi/battery.asl b/src/ec/google/chromeec/acpi/battery.asl
index d9304c13b7..fc9edc9d90 100644
--- a/src/ec/google/chromeec/acpi/battery.asl
+++ b/src/ec/google/chromeec/acpi/battery.asl
@@ -68,27 +68,27 @@ Method (BBIF, 2, Serialized)
Return (Arg1)
}
// Last Full Charge Capacity
- Store (BTDF, Index (Arg1, 2))
+ Store (BTDF, Arg1[2])
// Design Voltage
- Store (BTDV, Index (Arg1, 4))
+ Store (BTDV, Arg1[4])
// Design Capacity
Store (BTDA, Local0)
- Store (Local0, Index (Arg1, 1))
+ Store (Local0, Arg1[1])
// Design Capacity of Warning
Divide (Multiply (Local0, DWRN), 100, , Local2)
- Store (Local2, Index (Arg1, 5))
+ Store (Local2, Arg1[5])
// Design Capacity of Low
Divide (Multiply (Local0, DLOW), 100, , Local2)
- Store (Local2, Index (Arg1, 6))
+ Store (Local2, Arg1[6])
// Get battery info from mainboard
- Store (ToString(Concatenate(BMOD, 0x00)), Index (Arg1, 9))
- Store (ToString(Concatenate(BSER, 0x00)), Index (Arg1, 10))
- Store (ToString(Concatenate(BMFG, 0x00)), Index (Arg1, 12))
+ Store (ToString(Concatenate(BMOD, 0x00)), Arg1[9])
+ Store (ToString(Concatenate(BSER, 0x00)), Arg1[10])
+ Store (ToString(Concatenate(BMFG, 0x00)), Arg1[12])
Release (^BATM)
Return (Arg1)
@@ -108,30 +108,30 @@ Method (BBIX, 2, Serialized)
Return (Arg1)
}
// Last Full Charge Capacity
- Store (BTDF, Index (Arg1, 3))
+ Store (BTDF, Arg1[3])
// Design Voltage
- Store (BTDV, Index (Arg1, 5))
+ Store (BTDV, Arg1[5])
// Design Capacity
Store (BTDA, Local0)
- Store (Local0, Index (Arg1, 2))
+ Store (Local0, Arg1[2])
// Design Capacity of Warning
Divide (Multiply (Local0, DWRN), 100, , Local2)
- Store (Local2, Index (Arg1, 6))
+ Store (Local2, Arg1[6])
// Design Capacity of Low
Divide (Multiply (Local0, DLOW), 100, , Local2)
- Store (Local2, Index (Arg1, 7))
+ Store (Local2, Arg1[7])
// Cycle Count
- Store (BTCC, Index (Arg1, 8))
+ Store (BTCC, Arg1[8])
// Get battery info from mainboard
- Store (ToString(Concatenate(BMOD, 0x00)), Index (Arg1, 16))
- Store (ToString(Concatenate(BSER, 0x00)), Index (Arg1, 17))
- Store (ToString(Concatenate(BMFG, 0x00)), Index (Arg1, 19))
+ Store (ToString(Concatenate(BMOD, 0x00)), Arg1[16])
+ Store (ToString(Concatenate(BSER, 0x00)), Arg1[17])
+ Store (ToString(Concatenate(BMFG, 0x00)), Arg1[19])
Release (^BATM)
Return (Arg1)
@@ -177,7 +177,7 @@ Method (BBST, 4, Serialized)
If (BFCR) {
Or (Local1, 0x04, Local1)
}
- Store (Local1, Index (Arg1, 0))
+ Store (Local1, Arg1[0])
// Notify if battery state has changed since last time
If (LNotEqual (Local1, DeRefOf (Arg2))) {
@@ -195,7 +195,7 @@ Method (BBST, 4, Serialized)
//
// 1: BATTERY PRESENT RATE
//
- Store (BTPR, Index (Arg1, 1))
+ Store (BTPR, Arg1[1])
//
// 2: BATTERY REMAINING CAPACITY
@@ -216,12 +216,12 @@ Method (BBST, 4, Serialized)
Store (Local2, Local1)
}
}
- Store (Local1, Index (Arg1, 2))
+ Store (Local1, Arg1[2])
//
// 3: BATTERY PRESENT VOLTAGE
//
- Store (BTVO, Index (Arg1, 3))
+ Store (BTVO, Arg1[3])
Release (^BATM)
Return (Arg1)