aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/stout/acpi/mainboard.asl
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-10-08 09:35:09 +0200
committerMichael Niewöhner <foss@mniewoehner.de>2021-01-26 20:54:08 +0000
commit24130ec42c650fc2fc833fa3ad355015cab8349e (patch)
tree48351927a54b09f955ceee60e36792673429344d /src/mainboard/google/stout/acpi/mainboard.asl
parent6c78420bcb0444f62ac41f9f0f4d0e1f4c9dd48c (diff)
mb/google/stout: Convert to ASL 2.0 syntax
Generated 'build/dsdt.dsl' files are identical. Change-Id: I1ceb2abdd2562c145b01db7307d817c858d6b978 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46180 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/mainboard/google/stout/acpi/mainboard.asl')
-rw-r--r--src/mainboard/google/stout/acpi/mainboard.asl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/stout/acpi/mainboard.asl b/src/mainboard/google/stout/acpi/mainboard.asl
index 6cbe92e379..f8cbe2126f 100644
--- a/src/mainboard/google/stout/acpi/mainboard.asl
+++ b/src/mainboard/google/stout/acpi/mainboard.asl
@@ -9,14 +9,14 @@ Scope (\_SB)
Method (_LID, 0)
{
- Store (\_SB.PCI0.LPCB.EC0.HPLD, \LIDS)
+ \LIDS = \_SB.PCI0.LPCB.EC0.HPLD
Return (\LIDS)
}
Method (_PSW, 1)
{
// Enable/Disable LID as a wake source
- Store (Arg0, \_SB.PCI0.LPCB.EC0.HWLO)
+ \_SB.PCI0.LPCB.EC0.HWLO = Arg0
}
}
}