HAOUAS Elyes has uploaded this change for review.

View Change

mb/ocp/deltalake: Convert to ASL 2.0 syntax

Change-Id: I5bd8fe629fb969ec14dd400b6463ee1592d6903b
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
---
M src/mainboard/ocp/deltalake/acpi/platform.asl
1 file changed, 4 insertions(+), 4 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/07/46207/1
diff --git a/src/mainboard/ocp/deltalake/acpi/platform.asl b/src/mainboard/ocp/deltalake/acpi/platform.asl
index e04bde5..286cc6c 100644
--- a/src/mainboard/ocp/deltalake/acpi/platform.asl
+++ b/src/mainboard/ocp/deltalake/acpi/platform.asl
@@ -329,9 +329,9 @@
/* 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 (_PIC, 1)
{
/* Remember the OS' IRQ routing choice. */
- Store (Arg0, PICM)
+ PICM = Arg0
}

/*

To view, visit change 46207. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I5bd8fe629fb969ec14dd400b6463ee1592d6903b
Gerrit-Change-Number: 46207
Gerrit-PatchSet: 1
Gerrit-Owner: HAOUAS Elyes <ehaouas@noos.fr>
Gerrit-MessageType: newchange