From 3cfbe8a0945009ce0f0d6a01a4378c7b04342476 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Sun, 2 Jan 2022 02:44:04 +0100 Subject: [PATCH] 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/60697 Tested-by: build bot (Jenkins) Reviewed-by: Sean Rhodes --- src/superio/winbond/w83627hf/acpi/superio.asl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)