Attention is currently required from: Felix Held. Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60675 )
Change subject: superio/acpi: Replace LLess(a,b) with ASL 2.0 syntax ......................................................................
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 --- M src/superio/acpi/pnp_config.asl 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/75/60675/1
diff --git a/src/superio/acpi/pnp_config.asl b/src/superio/acpi/pnp_config.asl index 7ce8fd5..483bb82 100644 --- a/src/superio/acpi/pnp_config.asl +++ b/src/superio/acpi/pnp_config.asl @@ -46,7 +46,7 @@ #endif #endif #endif - If (LLess(Arg0, PNP_NO_LDN_CHANGE)) { + If (Arg0 < PNP_NO_LDN_CHANGE) { Store(Arg0, PNP_LOGICAL_DEVICE) } }