aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/parrot/acpi/platform.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/parrot/acpi/platform.asl')
-rw-r--r--src/mainboard/google/parrot/acpi/platform.asl12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mainboard/google/parrot/acpi/platform.asl b/src/mainboard/google/parrot/acpi/platform.asl
index 2e14a71699..861ba52ff6 100644
--- a/src/mainboard/google/parrot/acpi/platform.asl
+++ b/src/mainboard/google/parrot/acpi/platform.asl
@@ -15,16 +15,16 @@ Method(_WAK,1)
{
/* Update in case state changed while asleep */
/* Update AC status */
- Store (\_SB.PCI0.LPCB.EC0.ADPT, Local0)
- if (LNotEqual (Local0, \PWRS)) {
- Store (Local0, \PWRS)
+ Local0 = \_SB.PCI0.LPCB.EC0.ADPT
+ if (Local0 != \PWRS) {
+ \PWRS = Local0
Notify (\_SB.PCI0.LPCB.EC0.AC, 0x80)
}
/* Update LID status */
- Store (GP15, Local0)
- if (LNotEqual (Local0, \LIDS)) {
- Store (Local0, \LIDS)
+ Local0 = GP15
+ if (Local0 != \LIDS) {
+ \LIDS = Local0
Notify (\_SB.LID0, 0x80)
}