aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/link/acpi/platform.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/link/acpi/platform.asl')
-rw-r--r--src/mainboard/google/link/acpi/platform.asl14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mainboard/google/link/acpi/platform.asl b/src/mainboard/google/link/acpi/platform.asl
index 35893ee1a7..12b14530f2 100644
--- a/src/mainboard/google/link/acpi/platform.asl
+++ b/src/mainboard/google/link/acpi/platform.asl
@@ -7,7 +7,7 @@
Method(_PTS,1)
{
/* Disable WWAN */
- Store (Zero, GP36)
+ GP36 = 0
}
/* The _WAK method is called on system wakeup */
@@ -15,16 +15,16 @@ Method(_PTS,1)
Method(_WAK,1)
{
/* Update AC status */
- Store (\_SB.PCI0.LPCB.EC0.ACEX, Local0)
- if (LNotEqual (Local0, \PWRS)) {
- Store (Local0, \PWRS)
+ Local0 = \_SB.PCI0.LPCB.EC0.ACEX
+ if (Local0 != \PWRS) {
+ \PWRS = Local0
Notify (\_SB.PCI0.LPCB.EC0.AC, 0x80)
}
/* Update LID status */
- Store (\_SB.PCI0.LPCB.EC0.LIDS, Local0)
- if (LNotEqual (Local0, \LIDS)) {
- Store (Local0, \LIDS)
+ Local0 = \_SB.PCI0.LPCB.EC0.LIDS
+ if (Local0 != \LIDS) {
+ \LIDS = Local0
Notify (\_SB.PCI0.LPCB.EC0.LID0, 0x80)
}