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:
parent
52f46525b4
commit
18af706d50
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue