aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/intel/emeraldlake2/acpi/platform.asl
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-10-08 09:38:36 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-11-04 09:41:27 +0000
commit2f1b51ac2b4b11866ae998cc09bfc6273edb2f14 (patch)
treef04bcd33984f72414315a45160e8e1c97722da13 /src/mainboard/intel/emeraldlake2/acpi/platform.asl
parente28133a9948df5f98007219d54d1afa478318d56 (diff)
mb/intel/emeraldlake2: Convert to ASL 2.0 syntax
Generated 'build/dsdt.dsl' files are identical. Change-Id: Idd2bf447975b4c9b2cd3b440505c0bd960374165 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46184 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/intel/emeraldlake2/acpi/platform.asl')
-rw-r--r--src/mainboard/intel/emeraldlake2/acpi/platform.asl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/intel/emeraldlake2/acpi/platform.asl b/src/mainboard/intel/emeraldlake2/acpi/platform.asl
index 9568641fcf..9858fda223 100644
--- a/src/mainboard/intel/emeraldlake2/acpi/platform.asl
+++ b/src/mainboard/intel/emeraldlake2/acpi/platform.asl
@@ -8,16 +8,16 @@ Method(_PTS,1)
{
// NVS has a flag to determine USB policy in S3
if (S3U0) {
- Store (One, GP47) // Enable USB0
+ GP47 = 1 // Enable USB0
} Else {
- Store (Zero, GP47) // Disable USB0
+ GP47 = 0 // Disable USB0
}
// NVS has a flag to determine USB policy in S3
if (S3U1) {
- Store (One, GP56) // Enable USB1
+ GP56 = 1 // Enable USB1
} Else {
- Store (Zero, GP56) // Disable USB1
+ GP56 = 0 // Disable USB1
}
}