diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-01-02 00:29:41 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-06-09 09:03:45 +0000 |
commit | 8ef8a3e3c1d9b4c4c0872475817ff053b5c55b39 (patch) | |
tree | 13ee8ff7df984ac4299f5df2c2b1141cddd88c58 /src/superio/acpi/pnp_kbc.asl | |
parent | 8ab0975683c1416479bd5ddd85303cc79d8db770 (diff) |
superio/acpi: Replace LEqual(a,b) with ASL 2.0 syntax
Replace `LEqual(a, b)` with `a == b`.
Change-Id: Ia09c54465af47f5779917ed71bb3ea148864dfd1
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60657
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Diffstat (limited to 'src/superio/acpi/pnp_kbc.asl')
-rw-r--r-- | src/superio/acpi/pnp_kbc.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/acpi/pnp_kbc.asl b/src/superio/acpi/pnp_kbc.asl index 22a0556ff0..ba03e19f6a 100644 --- a/src/superio/acpi/pnp_kbc.asl +++ b/src/superio/acpi/pnp_kbc.asl @@ -156,7 +156,7 @@ Device (SUPERIO_ID(PS2, SUPERIO_KBC_PS2LDN)) { Method (_STA) { Store (^^SUPERIO_ID(KBD, SUPERIO_KBC_LDN)._STA (), Local0) - If (LEqual (Local0, DEVICE_PRESENT_ACTIVE)) { + If (Local0 == DEVICE_PRESENT_ACTIVE) { PNP_GENERIC_STA(SUPERIO_KBC_PS2LDN) } Else { Return (Local0) |