From b2d8807392353b6bc516a6a7af5d817eea98ee2a Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Sun, 2 Jan 2022 00:33:18 +0100 Subject: superio/winbond/w83667hg-a: Replace LEqual(a,b) with ASL 2.0 syntax Replace `LEqual(a, b)` with `a == b`. Change-Id: I033f73e6552746c6899e46ee4d619ab47cb3d55b Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/60659 Tested-by: build bot (Jenkins) Reviewed-by: Sean Rhodes --- src/superio/winbond/w83667hg-a/ps2_controller.asl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/superio') diff --git a/src/superio/winbond/w83667hg-a/ps2_controller.asl b/src/superio/winbond/w83667hg-a/ps2_controller.asl index b0a435e410..172a63c4c6 100644 --- a/src/superio/winbond/w83667hg-a/ps2_controller.asl +++ b/src/superio/winbond/w83667hg-a/ps2_controller.asl @@ -54,7 +54,7 @@ /* Restore default SuperIO access */ Store(0xAA, SIOI) - if (LEqual(Local0, 0x0)) { + if (Local0 == 0) { /* Mouse function selected */ Return (0xf) } -- cgit v1.2.3