diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-16 07:54:16 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-23 10:18:55 +0000 |
commit | d25277666829d7ed9897598d3ed46fdee0613106 (patch) | |
tree | a8aa22ed086730113ae0fefb2584fb0f424cc5c4 /src/superio/winbond/w83627hf/acpi | |
parent | 35e65a8bc36628baad7d2ed94bef7619971e6d88 (diff) |
tree: Replace And(a,b) with ASL 2.0 syntax
Replace `And (a, b)` with `a & b`.
Change-Id: Id8bbd1a477e6286bbcb5fa31afd1c7a860b1c7dc
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70851
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/superio/winbond/w83627hf/acpi')
-rw-r--r-- | src/superio/winbond/w83627hf/acpi/superio.asl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/superio/winbond/w83627hf/acpi/superio.asl b/src/superio/winbond/w83627hf/acpi/superio.asl index 051fab5db5..1da3bbf035 100644 --- a/src/superio/winbond/w83627hf/acpi/superio.asl +++ b/src/superio/winbond/w83627hf/acpi/superio.asl @@ -724,7 +724,7 @@ Device(SIO) { { Local0 = 0x00 ENTER_CONFIG_MODE (3) - If (!And(OPT2, 0x30)) + If (!(OPT2 & 0x30)) { If (ACTR) { Local0 = 0x0F @@ -849,7 +849,7 @@ Device(SIO) { { Local0 = 0x00 ENTER_CONFIG_MODE (3) - If (And(OPT2, 0x30)) + If (OPT2 & 0x30) { If (ACTR) { Local0 = 0x0F @@ -1348,7 +1348,7 @@ Device(SIO) { ENTER_CONFIG_MODE (9) Local0 = OPT4 Local0 &= 63 - OPT4 = Local0 | (And(Arg0, 0x03) << 6) + OPT4 = Local0 | ((Arg0 & 3) << 6) EXIT_CONFIG_MODE () } @@ -1358,7 +1358,7 @@ Device(SIO) { ENTER_CONFIG_MODE (8) Local0 = OPT4 Local0 &= 63 - OPT4 = Local0 | (And(Arg0, 0x03) << 6) + OPT4 = Local0 | ((Arg0 & 3) << 6) EXIT_CONFIG_MODE () } |