mb/google/zork/.../sleep.asl: Remove unnecessary variable
There is no reason to create a named variable. We can just return the package. BUG=b:153001807, b:154756391 TEST=None Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: I4f8f0362adf5ea5f026d0ba5ac6ac917fa160142 Reviewed-on: https://review.coreboot.org/c/coreboot/+/43423 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
parent
0c0bcd4072
commit
b3d7ced512
|
@ -1,8 +1,5 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
/* Wake status package */
|
|
||||||
Name(WKST,Package(){Zero, Zero})
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* \_PTS - Prepare to Sleep method
|
* \_PTS - Prepare to Sleep method
|
||||||
*
|
*
|
||||||
|
@ -25,10 +22,7 @@ Method(_PTS, 1) {
|
||||||
/* DBGO(Arg0) */
|
/* DBGO(Arg0) */
|
||||||
/* DBGO("\n") */
|
/* DBGO("\n") */
|
||||||
|
|
||||||
/* Clear wake status structure. */
|
|
||||||
Store(0, PEWD)
|
Store(0, PEWD)
|
||||||
Store(0, Index(WKST,0))
|
|
||||||
Store(0, Index(WKST,1))
|
|
||||||
Store(7, UPWS)
|
Store(7, UPWS)
|
||||||
} /* End Method(\_PTS) */
|
} /* End Method(\_PTS) */
|
||||||
|
|
||||||
|
@ -53,5 +47,5 @@ Method(\_WAK, 1) {
|
||||||
/* DBGO(Arg0) */
|
/* DBGO(Arg0) */
|
||||||
/* DBGO(" to S0\n") */
|
/* DBGO(" to S0\n") */
|
||||||
|
|
||||||
Return(WKST)
|
Return(Package(){Zero, Zero})
|
||||||
} /* End Method(\_WAK) */
|
} /* End Method(\_WAK) */
|
||||||
|
|
Loading…
Reference in New Issue