summaryrefslogtreecommitdiff
path: root/src/mainboard/ocp
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-10-08 10:05:44 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-11-04 09:44:26 +0000
commit12f69c5ef1f22355867974318410a1671014dcfe (patch)
tree01c43c589f58372b30427e4b8808f29ff1747a16 /src/mainboard/ocp
parent38eaf3e13f3d430f3f096e1b8881aa585a60f41a (diff)
downloadcoreboot-12f69c5ef1f22355867974318410a1671014dcfe.tar.xz
mb/ocp/tiogapass: Convert to ASL 2.0 syntax
Generated build/dsdt.dsl files are identical. Change-Id: Iffd6954dcb3f9fb8bcd89854d84f6944cb520dd1 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46208 Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/ocp')
-rw-r--r--src/mainboard/ocp/tiogapass/acpi/platform.asl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/ocp/tiogapass/acpi/platform.asl b/src/mainboard/ocp/tiogapass/acpi/platform.asl
index 3398568f1c..02c32f93b7 100644
--- a/src/mainboard/ocp/tiogapass/acpi/platform.asl
+++ b/src/mainboard/ocp/tiogapass/acpi/platform.asl
@@ -329,9 +329,9 @@ Field (PSYS, ByteAcc, NoLock, Preserve)
/* SMI I/O Trap */
Method (TRAP, 1, Serialized)
{
- Store (Arg0, SMIF) // SMI Function
- Store (0, TRP0) // Generate trap
- Return (SMIF) // Return value of SMI handler
+ SMIF = Arg0 // SMI Function
+ TRP0 = 0 // Generate trap
+ Return (SMIF) // Return value of SMI handler
}
/*
@@ -345,7 +345,7 @@ Method (TRAP, 1, Serialized)
Method (_PIC, 1)
{
/* Remember the OS' IRQ routing choice. */
- Store (Arg0, PICM)
+ PICM = Arg0
}
/*