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>
This commit is contained in:
Felix Singer 2022-12-12 03:32:49 +01:00
parent facf7d077c
commit b26e255877
3 changed files with 15 additions and 15 deletions

View File

@ -37,19 +37,19 @@ Device (BAT)
Method (_BIF, 0, Serialized) Method (_BIF, 0, Serialized)
{ {
/* Design Capacity */ /* Design Capacity */
Store (DGCP * 10000 / DGVO, PBIF[1]) PBIF[1] = DGCP * 10000 / DGVO
/* Last Full Charge Capacity */ /* Last Full Charge Capacity */
Store (FLCP * 10000 / DGVO, PBIF[2]) PBIF[2] = FLCP * 10000 / DGVO
/* Design Voltage */ /* Design Voltage */
Store (DGVO, PBIF[4]) PBIF[4] = DGVO
/* Design Capacity of Warning */ /* Design Capacity of Warning */
Store (BDW * 10000 / DGVO, PBIF[5]) PBIF[5] = BDW * 10000 / DGVO
/* Design Capacity of Low */ /* Design Capacity of Low */
Store (BDL, PBIF[6]) PBIF[6] = BDL
Return (PBIF) Return (PBIF)
} }
@ -70,22 +70,22 @@ Device (BAT)
* bit 1 = charging * bit 1 = charging
* bit 2 = critical level * bit 2 = critical level
*/ */
Store (BSTS, PBST[0]) PBST[0] = BSTS
/* /*
* 1: BATTERY PRESENT RATE * 1: BATTERY PRESENT RATE
*/ */
Store (BPR, PBST[1]) PBST[1] = BPR
/* /*
* 2: BATTERY REMAINING CAPACITY * 2: BATTERY REMAINING CAPACITY
*/ */
Store (BRC * 10000 / DGVO, PBST[2]) PBST[2] = BRC * 10000 / DGVO
/* /*
* 3: BATTERY PRESENT VOLTAGE * 3: BATTERY PRESENT VOLTAGE
*/ */
Store (BPV, PBST[3]) PBST[3] = BPV
Return (PBST) Return (PBST)
} }

View File

@ -45,10 +45,10 @@ Device (EC)
Method (_REG, 2, NotSerialized) Method (_REG, 2, NotSerialized)
{ {
/* Initialize AC power state */ /* Initialize AC power state */
Store (ACIN, \PWRS) \PWRS = ACIN
/* Initialize LID switch state */ /* Initialize LID switch state */
Store (LIDC, \LIDS) \LIDS = LIDC
} }
/* KEY_BRIGHTNESSUP */ /* KEY_BRIGHTNESSUP */
@ -72,14 +72,14 @@ Device (EC)
/* AC event */ /* AC event */
Method (_Q0D) Method (_Q0D)
{ {
Store (ACIN, \PWRS) \PWRS = ACIN
Notify (AC, 0x80) Notify (AC, 0x80)
} }
/* Lid event */ /* Lid event */
Method (_Q0E) Method (_Q0E)
{ {
Store (LIDC, \LIDS) \LIDS = LIDC
Notify (LID0, 0x80) Notify (LID0, 0x80)
} }

View File

@ -16,7 +16,7 @@ Method (_PTS, 1)
Method (_WAK, 1) Method (_WAK, 1)
{ {
Store(\_SB.PCI0.LPCB.EC.LIDC, \LIDS) \LIDS = \_SB.PCI0.LPCB.EC.LIDC
Store(\_SB.PCI0.LPCB.EC.ACIN, \PWRS) \PWRS = \_SB.PCI0.LPCB.EC.ACIN
Return (Package (){ 0, 0 }) Return (Package (){ 0, 0 })
} }