mb/google/kahlee/acpi: Replace Store(a,b) with ASL 2.0 syntax
Replace `Store (a, b)` with `b = a`. Change-Id: Ib2ba6b5c14f6699dc6c0734724a6784e3400a467 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70643 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
This commit is contained in:
parent
69b48d8231
commit
a61e6546f6
|
@ -29,10 +29,10 @@ Method (_PTS, 1)
|
||||||
\_SB.PCI0.FPTS ()
|
\_SB.PCI0.FPTS ()
|
||||||
|
|
||||||
/* Clear wake status structure. */
|
/* Clear wake status structure. */
|
||||||
Store (0, PEWD)
|
PEWD = 0
|
||||||
Store (0, WKST[0])
|
WKST[0] = 0
|
||||||
Store (0, WKST[1])
|
WKST[1] = 0
|
||||||
Store (7, UPWS)
|
UPWS = 7
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -52,10 +52,10 @@ Scope (\_TZ)
|
||||||
Method (_TMP, 0, Serialized)
|
Method (_TMP, 0, Serialized)
|
||||||
{
|
{
|
||||||
/* Get temperature from EC in deci-kelvin */
|
/* Get temperature from EC in deci-kelvin */
|
||||||
Store (\_SB.PCI0.LPCB.EC0.TSRD (TMPS), Local0)
|
Local0 = \_SB.PCI0.LPCB.EC0.TSRD (TMPS)
|
||||||
|
|
||||||
/* Critical temperature in deci-kelvin */
|
/* Critical temperature in deci-kelvin */
|
||||||
Store (CTOK (\TCRT), Local1)
|
Local1 = CTOK (\TCRT)
|
||||||
|
|
||||||
If (Local0 >= Local1) {
|
If (Local0 >= Local1) {
|
||||||
Printf ("CRITICAL TEMPERATURE: %o", Local0)
|
Printf ("CRITICAL TEMPERATURE: %o", Local0)
|
||||||
|
@ -64,7 +64,7 @@ Scope (\_TZ)
|
||||||
Sleep (1000)
|
Sleep (1000)
|
||||||
|
|
||||||
/* Re-read temperature from EC */
|
/* Re-read temperature from EC */
|
||||||
Store (\_SB.PCI0.LPCB.EC0.TSRD (TMPS), Local0)
|
Local0 = \_SB.PCI0.LPCB.EC0.TSRD (TMPS)
|
||||||
|
|
||||||
Printf ("RE-READ TEMPERATURE: %o", Local0)
|
Printf ("RE-READ TEMPERATURE: %o", Local0)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue