drivers/intel/gma/acpi: Replace LLess(a,b) with ASL 2.0 syntax
Replace `LLess(a, b)` with `a < b`. Change-Id: I043ffad90737f4217d01c49e03af81549a0ffb1b Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60677 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Sean Rhodes <sean@starlabs.systems>
This commit is contained in:
parent
6041543a7a
commit
04e6893fa6
|
@ -121,13 +121,13 @@
|
|||
|
||||
/* Local1: loop index (selectable values start at 2 in BRIG) */
|
||||
Store (2, Local1)
|
||||
While (LLess (Local1, SizeOf (BRIG) - 1)) {
|
||||
While (Local1 < SizeOf (BRIG) - 1) {
|
||||
/* Local[23]: adjacent values in BRIG */
|
||||
Store (DeRefOf (BRIG[Local1]), Local2)
|
||||
Store (DeRefOf (BRIG[Local1 + 1]), Local3)
|
||||
|
||||
If (LLess (Local0, Local3)) {
|
||||
If (LLess (Local0, Local2) || LLess (Local0 - Local2, Local3 - Local0)) {
|
||||
If (Local0 < Local3) {
|
||||
If (Local0 < Local2 || Local0 - Local2 < Local3 - Local0) {
|
||||
Return (Local2)
|
||||
} Else {
|
||||
Return (Local3)
|
||||
|
|
Loading…
Reference in New Issue