diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-11 22:49:56 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-12 22:04:28 +0000 |
commit | b6cbda27171b7f9cede5e58b6c25c52fbd8f0481 (patch) | |
tree | 08f908383f9a9566b08a4789875cb33a2752c711 /src/mainboard/google/jecht/acpi | |
parent | edec4d9b9a64cf08eb1a722bd7da5d9e58563b34 (diff) |
mb/google/jecht/acpi: Replace LEqual(a,b) with ASL 2.0 syntax
Replace `LEqual (a, b)` with `a == b`.
Change-Id: I74a6c949fa08a6eb712c053137369242e20e78fe
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70594
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/jecht/acpi')
-rw-r--r-- | src/mainboard/google/jecht/acpi/mainboard.asl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/jecht/acpi/mainboard.asl b/src/mainboard/google/jecht/acpi/mainboard.asl index da92d2c027..1b873e359e 100644 --- a/src/mainboard/google/jecht/acpi/mainboard.asl +++ b/src/mainboard/google/jecht/acpi/mainboard.asl @@ -16,7 +16,7 @@ Scope (\_SB.PCI0.RP01) { Store (JECHT_NIC_WAKE_GPIO, Local0) - If (LEqual (Arg0, 1)) { + If (Arg0 == 1) { // Enable GPIO as wake source \_SB.PCI0.LPCB.GPIO.GWAK (Local0) } @@ -38,7 +38,7 @@ Scope (\_SB.PCI0.RP02) { Store (JECHT_WLAN_WAKE_GPIO, Local0) - If (LEqual (Arg0, 1)) { + If (Arg0 == 1) { // Enable GPIO as wake source \_SB.PCI0.LPCB.GPIO.GWAK (Local0) } |