diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-01-02 01:42:31 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-06-09 09:04:45 +0000 |
commit | d67ed5921f1b056e10387b27f29b2c9d51355fa7 (patch) | |
tree | f1798391dab27b773f0f7226b845568fbdcbf3e5 /src/superio | |
parent | 3f37d7afcb964a5d95e9500cd7d51c79d73f749f (diff) |
sio/winbond/w83627hf/acpi: Replace LLess(a,b) with ASL 2.0 syntax
Replace `LLess(a, b)` with `a < b`.
Change-Id: I9344e34058a1dd8b951d273e53e3c229a0ec07b4
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60676
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Diffstat (limited to 'src/superio')
-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 cb50fe57cb..1e387e217e 100644 --- a/src/superio/winbond/w83627hf/acpi/superio.asl +++ b/src/superio/winbond/w83627hf/acpi/superio.asl @@ -153,7 +153,7 @@ Device(SIO) { Acquire (CRMX, 0xFFFF) Store (0x87, ADDR) Store (0x87, ADDR) - If (LLess(Arg0, 0xFF)) { + If (Arg0 < 0xFF) { Store(Arg0, LDN) } } |