aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/roda/rk886ex/acpi/platform.asl
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-10-04 14:57:37 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-11-04 09:43:15 +0000
commit62a437dd88742af332c4950a09f935bbf3d9812b (patch)
tree8d5f389575a3a34f0b204dd61f96bd39754c1b5a /src/mainboard/roda/rk886ex/acpi/platform.asl
parent527690c7bf6f96b52496d26223e8ac885dedf907 (diff)
mb/roda/rk886ex: Convert *.asl to ASL 2.0 syntax
Generated 'build/dsdt.dsl' files are identical. Change-Id: I2eea24db6cfd260e0f36243e90a5e01b360f23fb Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46012 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/roda/rk886ex/acpi/platform.asl')
-rw-r--r--src/mainboard/roda/rk886ex/acpi/platform.asl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/roda/rk886ex/acpi/platform.asl b/src/mainboard/roda/rk886ex/acpi/platform.asl
index fb272ddc68..d62e051ad0 100644
--- a/src/mainboard/roda/rk886ex/acpi/platform.asl
+++ b/src/mainboard/roda/rk886ex/acpi/platform.asl
@@ -20,12 +20,12 @@ Method(_WAK,1)
// was inserted while a sleep state was active.
// Are we going to S3?
- If (LEqual(Arg0, 3)) {
+ If (Arg0 == 3) {
// ..
}
// Are we going to S4?
- If (LEqual(Arg0, 4)) {
+ If (Arg0 == 4) {
// ..
}
@@ -56,7 +56,7 @@ Scope(\_SB)
* running: Windows XP SP1 needs to have C-State coordination
* enabled in SMM.
*/
- If (LAnd(LEqual(OSYS, 2001), MPEN)) {
+ If ((OSYS == 2001) && MPEN) {
// TRAP(61) // TODO
}