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>
This commit is contained in:
Felix Singer 2022-01-02 02:44:04 +01:00
parent d67ed5921f
commit 3cfbe8a094
1 changed files with 1 additions and 1 deletions

View File

@ -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)