summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Singer <felix.singer@secunet.com>2021-07-26 18:53:05 +0200
committerNico Huber <nico.h@gmx.de>2021-07-28 13:49:43 +0000
commitee00ad35134fe26815e9413b4e9af8261d430eb8 (patch)
tree9cbded2371ffe5b38e9c9c45bd3ac0c4f25e863c
parent2b902ebf95822ec33d26397e0094a55eac5eabb4 (diff)
downloadcoreboot-ee00ad35134fe26815e9413b4e9af8261d430eb8.tar.gz
coreboot-ee00ad35134fe26815e9413b4e9af8261d430eb8.tar.bz2
coreboot-ee00ad35134fe26815e9413b4e9af8261d430eb8.zip
ec/roda/it8518/acpi: Use mathematical operators
Use mathematical operators instead of their equivalent methods. Change-Id: I5b1d5d9882eae5e8bcf2d97bcefaeea1a7ad8f4d Signed-off-by: Felix Singer <felix.singer@secunet.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56607 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/ec/roda/it8518/acpi/battery.asl6
-rw-r--r--src/ec/roda/it8518/acpi/ec.asl4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/ec/roda/it8518/acpi/battery.asl b/src/ec/roda/it8518/acpi/battery.asl
index 882168fc9e1c..e9e7edb84c6e 100644
--- a/src/ec/roda/it8518/acpi/battery.asl
+++ b/src/ec/roda/it8518/acpi/battery.asl
@@ -63,8 +63,8 @@ Device (BAT0)
Printf ("-----> BAT0: _BIF")
PBIF[2] = B0FC
- PBIF[5] = Divide (Multiply (B0FC, 6), 100)
- PBIF[6] = Divide (Multiply (B0FC, 3), 100)
+ PBIF[5] = (B0FC * 6) / 100
+ PBIF[6] = (B0FC * 3) / 100
Printf ("<----- BAT0: _BIF")
@@ -96,7 +96,7 @@ Device (BAT0)
Local1 = B0AC
If (Local1 >= 0x8000)
{
- Subtract (0x00010000, Local1, Local1)
+ Local1 = 0x00010000 - Local1
}
PBST[1] = Local1
diff --git a/src/ec/roda/it8518/acpi/ec.asl b/src/ec/roda/it8518/acpi/ec.asl
index 76c0b63d9272..8b890755834e 100644
--- a/src/ec/roda/it8518/acpi/ec.asl
+++ b/src/ec/roda/it8518/acpi/ec.asl
@@ -133,7 +133,7 @@ Device (EC0)
Printf ("-----> EC: _Q43")
Local0 = BRIG
- Increment (Local0)
+ Local0 += 1
If (Local0 > 0xAA) {
Local0 = 0xAA
}
@@ -149,7 +149,7 @@ Device (EC0)
Printf ("-----> EC: _Q44")
Local0 = BRIG
- Decrement (Local0)
+ Local0 -= 1
If (Local0 < 0xA0)
{
Local0 = 0xA0