aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-01-02 01:41:40 +0100
committerFelix Singer <felixsinger@posteo.net>2022-06-09 09:04:10 +0000
commitb1b9c73902406c1fa3a8e13768cf800420c4db4b (patch)
treeaf20fed16b53e4b9e369206201132a72d60a246f /src
parent8ef8a3e3c1d9b4c4c0872475817ff053b5c55b39 (diff)
superio/acpi: Replace LLess(a,b) with ASL 2.0 syntax
Replace `LLess(a, b)` with `a < b`. Change-Id: I407d061ac7664d4910b8759fd1a72eab133b6e22 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60675 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Diffstat (limited to 'src')
-rw-r--r--src/superio/acpi/pnp_config.asl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/acpi/pnp_config.asl b/src/superio/acpi/pnp_config.asl
index 7ce8fd5fc4..483bb82e11 100644
--- a/src/superio/acpi/pnp_config.asl
+++ b/src/superio/acpi/pnp_config.asl
@@ -46,7 +46,7 @@ Method (ENTER_CONFIG_MODE, 1)
#endif
#endif
#endif
- If (LLess(Arg0, PNP_NO_LDN_CHANGE)) {
+ If (Arg0 < PNP_NO_LDN_CHANGE) {
Store(Arg0, PNP_LOGICAL_DEVICE)
}
}