Attention is currently required from: Felix Held.
Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60676 )
Change subject: sio/winbond/w83627hf/acpi: Replace LLess(a,b) with ASL 2.0 syntax
......................................................................
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(a)posteo.net>
---
M src/superio/winbond/w83627hf/acpi/superio.asl
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/76/60676/1
diff --git a/src/superio/winbond/w83627hf/acpi/superio.asl b/src/superio/winbond/w83627hf/acpi/superio.asl
index cb50fe5..1e387e2 100644
--- a/src/superio/winbond/w83627hf/acpi/superio.asl
+++ b/src/superio/winbond/w83627hf/acpi/superio.asl
@@ -153,7 +153,7 @@
Acquire (CRMX, 0xFFFF)
Store (0x87, ADDR)
Store (0x87, ADDR)
- If (LLess(Arg0, 0xFF)) {
+ If (Arg0 < 0xFF) {
Store(Arg0, LDN)
}
}
--
To view, visit https://review.coreboot.org/c/coreboot/+/60676
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I9344e34058a1dd8b951d273e53e3c229a0ec07b4
Gerrit-Change-Number: 60676
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Singer <felixsinger(a)posteo.net>
Gerrit-Reviewer: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Attention: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-MessageType: newchange
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(a)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)
}
}
--
To view, visit https://review.coreboot.org/c/coreboot/+/60675
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I407d061ac7664d4910b8759fd1a72eab133b6e22
Gerrit-Change-Number: 60675
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Singer <felixsinger(a)posteo.net>
Gerrit-Reviewer: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Attention: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-MessageType: newchange