diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-10-08 10:04:52 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-11-04 09:44:30 +0000 |
commit | b29769a39160d4a6efe0dc863ba889388536fda5 (patch) | |
tree | 2e8635219e9f119cc75171eef93d5bd36025d008 /src/mainboard/ocp/deltalake/acpi | |
parent | 12f69c5ef1f22355867974318410a1671014dcfe (diff) |
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/deltalake/acpi')
-rw-r--r-- | src/mainboard/ocp/deltalake/acpi/platform.asl | 8 |
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 e04bde5d19..286cc6cb99 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 } /* |