summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/cannonlake
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-12-30 01:27:07 +0100
committerFelix Singer <felixsinger@posteo.net>2021-12-31 08:50:43 +0000
commit3a8f0875c0a64be8586780a1d9f6e304b14c7456 (patch)
tree59c4abcf06837d6746269f196231cb47a1c840f4 /src/soc/intel/cannonlake
parent103f89a20072980e86fe156f429c7cb6271abd8c (diff)
downloadcoreboot-3a8f0875c0a64be8586780a1d9f6e304b14c7456.tar.gz
coreboot-3a8f0875c0a64be8586780a1d9f6e304b14c7456.tar.bz2
coreboot-3a8f0875c0a64be8586780a1d9f6e304b14c7456.zip
soc/intel/cannonlake/acpi: Replace Add(a,b,c) with ASL 2.0 syntax
Replace `Add (a, b, c)` with `c = a + b`. Change-Id: Ibc5aeb5e8d85556d7564033ec92deb5b2dae093d Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60486 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/soc/intel/cannonlake')
-rw-r--r--src/soc/intel/cannonlake/acpi/gpio.asl2
-rw-r--r--src/soc/intel/cannonlake/acpi/gpio_cnp_h.asl2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/cannonlake/acpi/gpio.asl b/src/soc/intel/cannonlake/acpi/gpio.asl
index a1bc375714d1..375a6a3068e0 100644
--- a/src/soc/intel/cannonlake/acpi/gpio.asl
+++ b/src/soc/intel/cannonlake/acpi/gpio.asl
@@ -91,7 +91,7 @@ Method (GADD, 1, NotSerialized)
Local1 = Arg0 - GPP_C0
}
Store (PCRB (Local0), Local2)
- Add (Local2, PAD_CFG_BASE, Local2)
+ Local2 += PAD_CFG_BASE
Return (Add (Local2, Multiply (Local1, 16)))
}
diff --git a/src/soc/intel/cannonlake/acpi/gpio_cnp_h.asl b/src/soc/intel/cannonlake/acpi/gpio_cnp_h.asl
index 5007d96c2221..db4b53d5111f 100644
--- a/src/soc/intel/cannonlake/acpi/gpio_cnp_h.asl
+++ b/src/soc/intel/cannonlake/acpi/gpio_cnp_h.asl
@@ -91,6 +91,6 @@ Method (GADD, 1, NotSerialized)
Local1 = Arg0 - GPP_I0
}
Store (PCRB (Local0), Local2)
- Add (Local2, PAD_CFG_BASE, Local2)
+ Local2 += PAD_CFG_BASE
Return (Add (Local2, Multiply (Local1, 16)))
}