diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-12 07:01:44 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-14 00:51:01 +0000 |
commit | a006259e6f6b09b388dd7fa0669c84bdeaea951b (patch) | |
tree | ec567dc92dfde955e653c06d6ced0e454beb11c1 /src/mainboard/google/slippy/variants/leon | |
parent | 1bb621c002121bc84ba0fb8be9e9166520936b55 (diff) |
mb/google/slippy/acpi: Replace Store(a,b) with ASL 2.0 syntax
Replace `Store (a, b)` with `b = a`.
Change-Id: I950d776a712a104f2caed614886ce2527028ead7
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70681
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/mainboard/google/slippy/variants/leon')
-rw-r--r-- | src/mainboard/google/slippy/variants/leon/include/variant/acpi/mainboard.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/slippy/variants/leon/include/variant/acpi/mainboard.asl b/src/mainboard/google/slippy/variants/leon/include/variant/acpi/mainboard.asl index 9d6631dfda..fbc40f1f93 100644 --- a/src/mainboard/google/slippy/variants/leon/include/variant/acpi/mainboard.asl +++ b/src/mainboard/google/slippy/variants/leon/include/variant/acpi/mainboard.asl @@ -37,7 +37,7 @@ Scope (\_SB.PCI0.I2C0) Method (_DSW, 3, NotSerialized) { - Store (BOARD_TRACKPAD_WAKE_GPIO, Local0) + Local0 = BOARD_TRACKPAD_WAKE_GPIO If (Arg0 == 1) { // Enable GPIO as wake source \_SB.PCI0.LPCB.GPIO.GWAK (Local0) |