aboutsummaryrefslogtreecommitdiff
path: root/src/ec/quanta
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-12-29 15:40:05 +0100
committerFelix Singer <felixsinger@posteo.net>2021-12-30 16:23:18 +0000
commitdac04084927b84373dc89349b2c5efc2cf68a78c (patch)
tree5da86986ebe2ff8b16bcd2ce921c22cfdf75a9c9 /src/ec/quanta
parent83ba290f6db1f679179023ff9984c1ac31af7430 (diff)
ec/quanta/it8518/acpi: Replace LAnd() with ASL 2.0 syntax
Replace `LAnd (a, b)` with `a && b`. Change-Id: I72604a0efa2d8fcdf39cf5a8b70082aeb32dddab Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60464 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/ec/quanta')
-rw-r--r--src/ec/quanta/it8518/acpi/battery.asl5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ec/quanta/it8518/acpi/battery.asl b/src/ec/quanta/it8518/acpi/battery.asl
index adbde93044..de51206007 100644
--- a/src/ec/quanta/it8518/acpi/battery.asl
+++ b/src/ec/quanta/it8518/acpi/battery.asl
@@ -306,7 +306,7 @@ Device (BATX)
Store (ECRC, Local1)
}
- If (LAnd (BFWK, LAnd (ACPW, LNot (Local0))))
+ If (BFWK && ACPW && LNot (Local0))
{
// On AC power and battery is neither charging
// nor discharging. Linux expects a full battery
@@ -317,8 +317,7 @@ Device (BATX)
// See if within ~3% of full
ShiftRight (Local2, 5, Local3)
- If (LAnd (LGreater (Local1, Subtract (Local2, Local3)),
- LLess (Local1, Add (Local2, Local3))))
+ If (LGreater (Local1, Subtract (Local2, Local3)) && LLess (Local1, Add (Local2, Local3)))
{
Store (Local2, Local1)
}