From f3649f03f3fd0f5ff8b6e08a3a2e313ed670d3fa Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Fri, 16 Dec 2022 04:07:23 +0100 Subject: tree: Replace XOr(a,b,c) with ASL 2.0 syntax Replace `XOr (a, b, c)` with `c = a ^ b`, respectively `c ^= b` where possible. Change-Id: Ic5f67684bbd4ea115c4dae8a4417d88bea0d6b77 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/70843 Reviewed-by: Eric Lai Tested-by: build bot (Jenkins) Reviewed-by: Elyes Haouas --- src/ec/quanta/it8518/acpi/battery.asl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ec/quanta') diff --git a/src/ec/quanta/it8518/acpi/battery.asl b/src/ec/quanta/it8518/acpi/battery.asl index 7a3f77467a..e63cefb7c5 100644 --- a/src/ec/quanta/it8518/acpi/battery.asl +++ b/src/ec/quanta/it8518/acpi/battery.asl @@ -106,7 +106,7 @@ Device (BATX) // ACPI spec : 0 - mWh : 1 - mAh // Local7 = SBCM - XOr (Local7, One, PBIF[0]) + PBIF[0] = Local7 ^ One // // Information ID 0 - @@ -282,7 +282,7 @@ Device (BATX) } } - XOr (DerefOf (PBIF[0]), One, Local6) + Local6 = DerefOf (PBIF[0]) ^ One If (Local6) { -- cgit v1.2.3