aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-09-30 13:09:25 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2021-02-10 00:07:55 +0000
commit01ae7e7de6ee9c049b83a198421dec8cbae313ae (patch)
tree198c81dcfe21927eb0adb61b3430161a4bda75a4
parent567e8eacfba01bed120ba6d5029b2f4a800e14ff (diff)
sb/amd/{agesa,pi}/hudson/acpi: Convert 'audio.asl' to ASL 2.0 syntax
Change-Id: I976b4c2e2aa878d8b591c3e416ffb76d7a699b39 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45863 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/southbridge/amd/agesa/hudson/acpi/audio.asl8
-rw-r--r--src/southbridge/amd/pi/hudson/acpi/audio.asl8
2 files changed, 8 insertions, 8 deletions
diff --git a/src/southbridge/amd/agesa/hudson/acpi/audio.asl b/src/southbridge/amd/agesa/hudson/acpi/audio.asl
index c85710f17a..8eb0e6d847 100644
--- a/src/southbridge/amd/agesa/hudson/acpi/audio.asl
+++ b/src/southbridge/amd/agesa/hudson/acpi/audio.asl
@@ -28,11 +28,11 @@ Device(AZHD) { /* 0:14.2 - HD Audio */
Method (_INI, 0, NotSerialized)
{
- If (LEqual (OSVR, 0x03))
+ If (OSVR == 0x03)
{
- Store (Zero, NSEN)
- Store (One, NSDO)
- Store (One, NSDI)
+ NSEN = 0
+ NSDO = 1
+ NSDI = 1
}
}
} /* end AZHD */
diff --git a/src/southbridge/amd/pi/hudson/acpi/audio.asl b/src/southbridge/amd/pi/hudson/acpi/audio.asl
index c85710f17a..8eb0e6d847 100644
--- a/src/southbridge/amd/pi/hudson/acpi/audio.asl
+++ b/src/southbridge/amd/pi/hudson/acpi/audio.asl
@@ -28,11 +28,11 @@ Device(AZHD) { /* 0:14.2 - HD Audio */
Method (_INI, 0, NotSerialized)
{
- If (LEqual (OSVR, 0x03))
+ If (OSVR == 0x03)
{
- Store (Zero, NSEN)
- Store (One, NSDO)
- Store (One, NSDI)
+ NSEN = 0
+ NSDO = 1
+ NSDI = 1
}
}
} /* end AZHD */