aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/auron/variants/samus/include/variant/acpi/mainboard.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/auron/variants/samus/include/variant/acpi/mainboard.asl')
-rw-r--r--src/mainboard/google/auron/variants/samus/include/variant/acpi/mainboard.asl18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mainboard/google/auron/variants/samus/include/variant/acpi/mainboard.asl b/src/mainboard/google/auron/variants/samus/include/variant/acpi/mainboard.asl
index 4329d5f9ab..9ca592f401 100644
--- a/src/mainboard/google/auron/variants/samus/include/variant/acpi/mainboard.asl
+++ b/src/mainboard/google/auron/variants/samus/include/variant/acpi/mainboard.asl
@@ -30,8 +30,8 @@ Scope (\_SB.PCI0.I2C0)
Method (_DSW, 3, NotSerialized)
{
- Store (BOARD_TRACKPAD_WAKE_GPIO, Local0)
- If (LEqual (Arg0, 1)) {
+ Local0 = BOARD_TRACKPAD_WAKE_GPIO
+ If (Arg0 == 1) {
// Enable GPIO as wake source
\_SB.PCI0.LPCB.GPIO.GWAK (Local0)
}
@@ -39,7 +39,7 @@ Scope (\_SB.PCI0.I2C0)
Method (_STA)
{
- If (LEqual (\S1EN, 1)) {
+ If (\S1EN == 1) {
Return (0xF)
} Else {
Return (0x0)
@@ -141,8 +141,8 @@ Scope (\_SB.PCI0.I2C0)
Method (_DSW, 3, NotSerialized)
{
- Store (BOARD_CODEC_WAKE_GPIO, Local0)
- If (LEqual (Arg0, 1)) {
+ Local0 = BOARD_CODEC_WAKE_GPIO
+ If (Arg0 == 1) {
// Enable GPIO as wake source
\_SB.PCI0.LPCB.GPIO.GWAK (Local0)
}
@@ -150,7 +150,7 @@ Scope (\_SB.PCI0.I2C0)
Method (_STA)
{
- If (LEqual (\S1EN, 1)) {
+ If (\S1EN == 1) {
Return (0xF)
} Else {
Return (0x0)
@@ -188,8 +188,8 @@ Scope (\_SB.PCI0.I2C1)
Method (_DSW, 3, NotSerialized)
{
- Store (BOARD_CODEC_WAKE_GPIO, Local0)
- If (LEqual (Arg0, 1)) {
+ Local0 = BOARD_CODEC_WAKE_GPIO
+ If (Arg0 == 1) {
// Enable GPIO as wake source
\_SB.PCI0.LPCB.GPIO.GWAK (Local0)
}
@@ -198,7 +198,7 @@ Scope (\_SB.PCI0.I2C1)
Method (_STA)
{
- If (LEqual (\S2EN, 1)) {
+ If (\S2EN == 1) {
Return (0xF)
} Else {
Return (0x0)