mb/51nb/x210/acpi: Replace Store(a,b) with ASL 2.0 syntax

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

Change-Id: Ic0ae4903546446322c2c47cab00de4c3af6c9d98
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70634
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
diff --git a/src/mainboard/51nb/x210/acpi/battery.asl b/src/mainboard/51nb/x210/acpi/battery.asl
index bf5c9b0..3b126b3 100644
--- a/src/mainboard/51nb/x210/acpi/battery.asl
+++ b/src/mainboard/51nb/x210/acpi/battery.asl
@@ -37,19 +37,19 @@
 	Method (_BIF, 0, Serialized)
 	{
 		/* Design Capacity */
-		Store (DGCP * 10000 / DGVO, PBIF[1])
+		PBIF[1] = DGCP * 10000 / DGVO
 
 		/* Last Full Charge Capacity */
-		Store (FLCP * 10000 / DGVO, PBIF[2])
+		PBIF[2] = FLCP * 10000 / DGVO
 
 		/* Design Voltage */
-		Store (DGVO, PBIF[4])
+		PBIF[4] = DGVO
 
 		/* Design Capacity of Warning */
-		Store (BDW * 10000 / DGVO, PBIF[5])
+		PBIF[5] = BDW * 10000 / DGVO
 
 		/* Design Capacity of Low */
-		Store (BDL, PBIF[6])
+		PBIF[6] = BDL
 
 		Return (PBIF)
 	}
@@ -70,22 +70,22 @@
 		* bit 1 = charging
 		* bit 2 = critical level
 		*/
-		Store (BSTS, PBST[0])
+		PBST[0] = BSTS
 
 		/*
 		* 1: BATTERY PRESENT RATE
 		*/
-		Store (BPR, PBST[1])
+		PBST[1] = BPR
 
 		/*
 		* 2: BATTERY REMAINING CAPACITY
 		*/
-		Store (BRC * 10000 / DGVO, PBST[2])
+		PBST[2] = BRC * 10000 / DGVO
 
 		/*
 		* 3: BATTERY PRESENT VOLTAGE
 		*/
-		Store (BPV, PBST[3])
+		PBST[3] = BPV
 
 		Return (PBST)
 	}
diff --git a/src/mainboard/51nb/x210/acpi/ec.asl b/src/mainboard/51nb/x210/acpi/ec.asl
index 78e156c..581e1e7 100644
--- a/src/mainboard/51nb/x210/acpi/ec.asl
+++ b/src/mainboard/51nb/x210/acpi/ec.asl
@@ -45,10 +45,10 @@
 	Method (_REG, 2, NotSerialized)
 	{
 		/* Initialize AC power state */
-		Store (ACIN, \PWRS)
+		\PWRS = ACIN
 
 		/* Initialize LID switch state */
-		Store (LIDC, \LIDS)
+		\LIDS = LIDC
 	}
 
 	/* KEY_BRIGHTNESSUP */
@@ -72,14 +72,14 @@
 	/* AC event */
 	Method (_Q0D)
 	{
-		Store (ACIN, \PWRS)
+		\PWRS = ACIN
 		Notify (AC, 0x80)
 	}
 
 	/* Lid event */
 	Method (_Q0E)
 	{
-		Store (LIDC, \LIDS)
+		\LIDS = LIDC
 		Notify (LID0, 0x80)
 	}
 
diff --git a/src/mainboard/51nb/x210/acpi/platform.asl b/src/mainboard/51nb/x210/acpi/platform.asl
index dbf6241..eb1dea8d 100644
--- a/src/mainboard/51nb/x210/acpi/platform.asl
+++ b/src/mainboard/51nb/x210/acpi/platform.asl
@@ -16,7 +16,7 @@
 
 Method (_WAK, 1)
 {
-	Store(\_SB.PCI0.LPCB.EC.LIDC, \LIDS)
-	Store(\_SB.PCI0.LPCB.EC.ACIN, \PWRS)
+	\LIDS = \_SB.PCI0.LPCB.EC.LIDC
+	\PWRS = \_SB.PCI0.LPCB.EC.ACIN
 	Return (Package (){ 0, 0 })
 }