Attention is currently required from: Patrick Rudolph. Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60681 )
Change subject: drivers/intel/gma/acpi: Replace LGreater(a,b) with ASL 2.0 syntax ......................................................................
drivers/intel/gma/acpi: Replace LGreater(a,b) with ASL 2.0 syntax
Replace `LGreater(a, b)` with `a > b`.
Change-Id: I56479726f91f33e1d3062a31f1efb82c0814316c Signed-off-by: Felix Singer felixsinger@posteo.net --- M src/drivers/intel/gma/acpi/configure_brightness_levels.asl 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/81/60681/1
diff --git a/src/drivers/intel/gma/acpi/configure_brightness_levels.asl b/src/drivers/intel/gma/acpi/configure_brightness_levels.asl index a24434f..c1f1104 100644 --- a/src/drivers/intel/gma/acpi/configure_brightness_levels.asl +++ b/src/drivers/intel/gma/acpi/configure_brightness_levels.asl @@ -54,7 +54,7 @@ /* Always keep BCLP up to date, even if driver is not ready. It requires a full 8-bit brightness value. 255 = 100% */ Store (Arg0 * 255 / 100, Local1) - If (LGreater(Local1, 255)) { + If (Local1 > 255) { Store (255, Local1) } /* also set valid bit */ @@ -71,7 +71,7 @@ Store (0x1, ASLE)
Store (0x20, Local0) - While (LGreater(Local0, Zero)) + While (Local0 > 0) { Sleep (1) If (And (ASLC, 0x2) == 0) {