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>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60681
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
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) {