drivers/intel/gma/acpi: Replace LEqual(a,b) with ASL 2.0 syntax

Replace `LEqual(a, b)` with `a == b`.

Change-Id: I965a0718f6bca1dc27b928bdd9374857f5ea3215
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60660
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 11d8fcd..ec51915 100644
--- a/src/drivers/intel/gma/acpi/configure_brightness_levels.asl
+++ b/src/drivers/intel/gma/acpi/configure_brightness_levels.asl
@@ -42,11 +42,11 @@
 		 */
 		Method (XBCM, 1, Serialized)
 		{
-			If (LEqual(ASLS, Zero))
+			If (ASLS == 0)
 			{
 				Return (Ones)
 			}
-			If (LEqual(And(MBOX, 0x4), Zero))
+			If (And(MBOX, 0x4) == 0)
 			{
 				Return (Ones)
 			}
@@ -60,7 +60,7 @@
 			/* also set valid bit */
 			Store (Or (Local1, 0x80000000), BCLP)
 
-			If (LEqual(ARDY, Zero))
+			If (ARDY == 0)
 			{
 				Return (Ones)
 			}
@@ -74,10 +74,10 @@
 			While (LGreater(Local0, Zero))
 			{
 				Sleep (1)
-				If (LEqual (And (ASLC, 0x2), 0)) {
+				If (And (ASLC, 0x2) == 0) {
 					/* Request has been processed, check status: */
 					And (ShiftRight (ASLC, 12), 0x3, Local1)
-					If (LEqual (Local1, 0)) {
+					If (Local1 == 0) {
 						Return (Zero)
 					} Else {
 						Return (Ones)
@@ -144,7 +144,7 @@
 
 	Method (XBCM, 1, NotSerialized)
 	{
-		If (LEqual(^BOX3.XBCM (Arg0), Ones))
+		If (^BOX3.XBCM (Arg0) == Ones)
 		{
 			^LEGA.XBCM (Arg0)
 		}