aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/beltino/acpi/mainboard.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/beltino/acpi/mainboard.asl')
-rw-r--r--src/mainboard/google/beltino/acpi/mainboard.asl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/google/beltino/acpi/mainboard.asl b/src/mainboard/google/beltino/acpi/mainboard.asl
index 3049dbee96..10696ff9fc 100644
--- a/src/mainboard/google/beltino/acpi/mainboard.asl
+++ b/src/mainboard/google/beltino/acpi/mainboard.asl
@@ -14,9 +14,9 @@ Scope (\_SB.PCI0.RP01)
Method (_DSW, 3, NotSerialized)
{
- Store (NIC_WAKE_GPIO, Local0)
+ Local0 = NIC_WAKE_GPIO
- If (LEqual (Arg0, 1)) {
+ If (Arg0 == 1) {
// Enable GPIO as wake source
\_SB.PCI0.LPCB.GWAK (Local0)
}
@@ -36,9 +36,9 @@ Scope (\_SB.PCI0.RP02)
Method (_DSW, 3, NotSerialized)
{
- Store (WLAN_WAKE_GPIO, Local0)
+ Local0 = WLAN_WAKE_GPIO
- If (LEqual (Arg0, 1)) {
+ If (Arg0 == 1) {
// Enable GPIO as wake source
\_SB.PCI0.LPCB.GWAK (Local0)
}