summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/slippy/variants/peppy/include/variant/acpi/mainboard.asl
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-12-12 07:01:44 +0100
committerFelix Singer <felixsinger@posteo.net>2022-12-14 00:51:01 +0000
commita006259e6f6b09b388dd7fa0669c84bdeaea951b (patch)
treeec567dc92dfde955e653c06d6ced0e454beb11c1 /src/mainboard/google/slippy/variants/peppy/include/variant/acpi/mainboard.asl
parent1bb621c002121bc84ba0fb8be9e9166520936b55 (diff)
downloadcoreboot-a006259e6f6b09b388dd7fa0669c84bdeaea951b.tar.gz
coreboot-a006259e6f6b09b388dd7fa0669c84bdeaea951b.tar.bz2
coreboot-a006259e6f6b09b388dd7fa0669c84bdeaea951b.zip
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/peppy/include/variant/acpi/mainboard.asl')
-rw-r--r--src/mainboard/google/slippy/variants/peppy/include/variant/acpi/mainboard.asl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/google/slippy/variants/peppy/include/variant/acpi/mainboard.asl b/src/mainboard/google/slippy/variants/peppy/include/variant/acpi/mainboard.asl
index ee302098511e..e1499018266a 100644
--- a/src/mainboard/google/slippy/variants/peppy/include/variant/acpi/mainboard.asl
+++ b/src/mainboard/google/slippy/variants/peppy/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)
@@ -79,7 +79,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)
@@ -119,7 +119,7 @@ Scope (\_SB.PCI0.I2C1)
Method (_DSW, 3, NotSerialized)
{
- Store (BOARD_TOUCHSCREEN_WAKE_GPIO, Local0)
+ Local0 = BOARD_TOUCHSCREEN_WAKE_GPIO
If (Arg0 == 1) {
// Enable GPIO as wake source
\_SB.PCI0.LPCB.GPIO.GWAK (Local0)