vc/google/chromeos/acpi: Replace Store(a,b) with ASL 2.0 syntax

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

Change-Id: I8b2d97063ba199274c1072ba3a12613162a17ef1
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70630
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 02:30:57 +01:00
parent 52f46525b4
commit 18af706d50
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ Scope (\_SB)
{ {
CreateDwordField (^RBUF, ^MRES._BAS, RBAS) CreateDwordField (^RBUF, ^MRES._BAS, RBAS)
CreateDwordField (^RBUF, ^MRES._LEN, RLEN) CreateDwordField (^RBUF, ^MRES._LEN, RLEN)
Store (\RMOB, RBAS) RBAS = \RMOB
Store (\RMOL, RLEN) RLEN = \RMOL
Return (^RBUF) Return (^RBUF)
} }
Method(_STA, 0) Method(_STA, 0)