summaryrefslogtreecommitdiff
path: root/src/soc/intel/baytrail/acpi/dptf/dptf.asl
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-12-25 06:29:39 +0100
committerFelix Singer <felixsinger@posteo.net>2022-12-26 08:51:39 +0000
commitf451bfb1a55192cd5e69a65e91ab5c8db6a36a0d (patch)
tree313c5db8cba670daef9f26c40f7a2605365c3ae2 /src/soc/intel/baytrail/acpi/dptf/dptf.asl
parentffc0d2455cc855b315db23f4641ebaf4cc538ea7 (diff)
soc/intel/baytrail/acpi: Replace Index(a, b) with ASL 2.0 syntax
Change-Id: Iab611cda1083da4378a6e509d11ea26bdbb45edd Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/71503 Reviewed-by: Felix Singer <felixsinger@posteo.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/baytrail/acpi/dptf/dptf.asl')
-rw-r--r--src/soc/intel/baytrail/acpi/dptf/dptf.asl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/baytrail/acpi/dptf/dptf.asl b/src/soc/intel/baytrail/acpi/dptf/dptf.asl
index db7f80c722..7213abb6a1 100644
--- a/src/soc/intel/baytrail/acpi/dptf/dptf.asl
+++ b/src/soc/intel/baytrail/acpi/dptf/dptf.asl
@@ -36,7 +36,7 @@ Device (DPTF)
Method (_OSC, 4, Serialized)
{
/* Check for Passive Policy UUID */
- If (DeRefOf (Index (IDSP, 0)) == Arg0) {
+ If (DeRefOf (IDSP[0]) == Arg0) {
/* Initialize Thermal Devices */
^TINI ()