diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-01-02 02:44:04 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-06-09 09:05:29 +0000 |
commit | 3cfbe8a0945009ce0f0d6a01a4378c7b04342476 (patch) | |
tree | e80ef7e3ced163d22ea9f6adf8a733b718dc3217 /src/superio/winbond | |
parent | d67ed5921f1b056e10387b27f29b2c9d51355fa7 (diff) |
sio/winbond/w83627hf/acpi: Replace LNotEqual(a,b) with ASL 2.0 syntax
Replace `LNotEqual(a, b)` with `a != b`.
Change-Id: I24cf4fd70e887c14006975f494be63c34f8a75e6
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60697
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Diffstat (limited to 'src/superio/winbond')
-rw-r--r-- | src/superio/winbond/w83627hf/acpi/superio.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/winbond/w83627hf/acpi/superio.asl b/src/superio/winbond/w83627hf/acpi/superio.asl index 1e387e217e..075cd11105 100644 --- a/src/superio/winbond/w83627hf/acpi/superio.asl +++ b/src/superio/winbond/w83627hf/acpi/superio.asl @@ -422,7 +422,7 @@ Device(SIO) { ENTER_CONFIG_MODE (1) And(OPT1, 0x3, Local1) If (ACTR) { - If (LNotEqual(Local1, 2)) { + If (Local1 != 2) { Store (0x0D, Local0) } Else { Store (0x0D, Local0) |