aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-12-12 01:27:55 +0100
committerFelix Singer <felixsinger@posteo.net>2022-12-12 22:16:04 +0000
commit4bbd807c01defa0c88af7635b4c7d27c67dde15d (patch)
tree13e84a95dd5ba037a34dab8bd0f15206b5b7e03f /src
parentbf1de40853e4ead8755d46588964032c6ff6d92c (diff)
soc/intel/acpi: Replace Subtract(a,b) with ASL 2.0 syntax
Replace `Subtract (a, b)` with `a - b`. Change-Id: I77028c17dcd7925a392d56488d34090837d660f2 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70626 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src')
-rw-r--r--src/soc/intel/baytrail/acpi/southcluster.asl4
-rw-r--r--src/soc/intel/braswell/acpi/lpc.asl2
-rw-r--r--src/soc/intel/braswell/acpi/southcluster.asl4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/intel/baytrail/acpi/southcluster.asl b/src/soc/intel/baytrail/acpi/southcluster.asl
index 551bf08c7b..61700bcb08 100644
--- a/src/soc/intel/baytrail/acpi/southcluster.asl
+++ b/src/soc/intel/baytrail/acpi/southcluster.asl
@@ -175,8 +175,8 @@ Method (_CRS, 0, Serialized)
/* TOLM is BMBOUND accessible from IOSF so is saved in NVS */
Store (\TOLM, PMIN)
- Store (Subtract(CONFIG_ECAM_MMCONF_BASE_ADDRESS, 1), PMAX)
- PLEN = Subtract (PMAX, PMIN) + 1
+ Store (CONFIG_ECAM_MMCONF_BASE_ADDRESS - 1, PMAX)
+ PLEN = PMAX - PMIN + 1
Return (MCRS)
}
diff --git a/src/soc/intel/braswell/acpi/lpc.asl b/src/soc/intel/braswell/acpi/lpc.asl
index 2b540180a7..fca80170b8 100644
--- a/src/soc/intel/braswell/acpi/lpc.asl
+++ b/src/soc/intel/braswell/acpi/lpc.asl
@@ -39,7 +39,7 @@ Device (LPCB)
CreateDwordField (^RBUF, ^FBAR._LEN, FLEN)
Multiply(CONFIG_COREBOOT_ROMSIZE_KB, 1024, Local0)
Store(Local0, FLEN)
- FBAS = Subtract(0xffffffff, Local0) + 1
+ FBAS = 0xffffffff - Local0 + 1
Return (^RBUF)
}
}
diff --git a/src/soc/intel/braswell/acpi/southcluster.asl b/src/soc/intel/braswell/acpi/southcluster.asl
index 0a4dbd1e80..ade6441888 100644
--- a/src/soc/intel/braswell/acpi/southcluster.asl
+++ b/src/soc/intel/braswell/acpi/southcluster.asl
@@ -174,8 +174,8 @@ Method (_CRS, 0, Serialized)
/* TOLM is BMBOUND accessible from IOSF so is saved in NVS */
Store (\TOLM, PMIN)
- Store (Subtract(CONFIG_ECAM_MMCONF_BASE_ADDRESS, 1), PMAX)
- PLEN = Subtract (PMAX, PMIN) + 1
+ Store (CONFIG_ECAM_MMCONF_BASE_ADDRESS - 1, PMAX)
+ PLEN = PMAX - PMIN + 1
Return (MCRS)
}