diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-16 04:40:39 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-23 10:17:34 +0000 |
commit | 86bc2e708dc2600c5611b6573d43645e7d57e561 (patch) | |
tree | 54b589e40a81ee74915df4ed68a6a13c944bc17d /src/mainboard/acer/aspire_vn7_572g | |
parent | 372573eaff0f757f004de2f4fb3f688de93bbbba (diff) |
tree: Replace Or(a,b,c) with ASL 2.0 syntax
Replace `Or (a, b, c)` with `c = a | b`, respectively `c |= b` where
possible.
Change-Id: Icf194b248075f290de90fb4bc4e9a0cd9d76ec61
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70846
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/acer/aspire_vn7_572g')
-rw-r--r-- | src/mainboard/acer/aspire_vn7_572g/acpi/thermal.asl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/acer/aspire_vn7_572g/acpi/thermal.asl b/src/mainboard/acer/aspire_vn7_572g/acpi/thermal.asl index 7d175a23e5..285615d3f8 100644 --- a/src/mainboard/acer/aspire_vn7_572g/acpi/thermal.asl +++ b/src/mainboard/acer/aspire_vn7_572g/acpi/thermal.asl @@ -12,14 +12,14 @@ Scope (_TZ) Local0 = \_SB.PCI0.LPCB.EC0.MS0T Local1 = \_SB.PCI0.LPCB.EC0.MCSS /* Suppress warning over reading status flag by dummy OR */ - Or (Local1, 1, Local1) + Local1 |= 1 Local2 = \_SB.PCI0.LPCB.EC0.MOSD #else Local0 = \_SB.PCI0.LPCB.EC0.ES0T /* "MCSS": Considering neighbouring bits, likely "ESSF" in thermals, not "ECSS" in power notifications */ Local1 = \_SB.PCI0.LPCB.EC0.ESSF - Or (Local1, 1, Local1) + Local1 |= 1 Local2 = \_SB.PCI0.LPCB.EC0.EOSD #endif If (Local2) // Thermal trip |