summaryrefslogtreecommitdiffstats
path: root/src/mainboard/ocp
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-10-08 10:04:52 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-11-04 09:44:30 +0000
commitb29769a39160d4a6efe0dc863ba889388536fda5 (patch)
tree2e8635219e9f119cc75171eef93d5bd36025d008 /src/mainboard/ocp
parent12f69c5ef1f22355867974318410a1671014dcfe (diff)
downloadcoreboot-b29769a39160d4a6efe0dc863ba889388536fda5.tar.gz
coreboot-b29769a39160d4a6efe0dc863ba889388536fda5.tar.bz2
coreboot-b29769a39160d4a6efe0dc863ba889388536fda5.zip
mb/ocp/deltalake: Convert to ASL 2.0 syntax
Generated build/dsdt.dsl files are same. Change-Id: I5bd8fe629fb969ec14dd400b6463ee1592d6903b Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46207 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/deltalake/acpi/platform.asl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/ocp/deltalake/acpi/platform.asl b/src/mainboard/ocp/deltalake/acpi/platform.asl
index e04bde5d191f..286cc6cb99f3 100644
--- a/src/mainboard/ocp/deltalake/acpi/platform.asl
+++ b/src/mainboard/ocp/deltalake/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
}
/*