Attention is currently required from: Tristan Corrick. Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/54371 )
Change subject: mb/asus/{h61m-cs,p8h61-m_lx}: Reorder `_PTS` and `_WAK` ......................................................................
mb/asus/{h61m-cs,p8h61-m_lx}: Reorder `_PTS` and `_WAK`
Done to preserve reproducibility when switching to a variant setup.
Change-Id: I78241c807f767846774b8e1a2e0d25f3452ed544 Signed-off-by: Angel Pons th3fanbus@gmail.com --- M src/mainboard/asus/h61m-cs/acpi/platform.asl M src/mainboard/asus/p8h61-m_lx/acpi/platform.asl 2 files changed, 7 insertions(+), 7 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/54371/1
diff --git a/src/mainboard/asus/h61m-cs/acpi/platform.asl b/src/mainboard/asus/h61m-cs/acpi/platform.asl index 7b1b2b2..90cf05b 100644 --- a/src/mainboard/asus/h61m-cs/acpi/platform.asl +++ b/src/mainboard/asus/h61m-cs/acpi/platform.asl @@ -1,10 +1,10 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */
+Method(_PTS,1) +{ +} + Method(_WAK,1) { Return(Package(){0,0}) } - -Method(_PTS,1) -{ -} diff --git a/src/mainboard/asus/p8h61-m_lx/acpi/platform.asl b/src/mainboard/asus/p8h61-m_lx/acpi/platform.asl index 77a0295..90cf05b 100644 --- a/src/mainboard/asus/p8h61-m_lx/acpi/platform.asl +++ b/src/mainboard/asus/p8h61-m_lx/acpi/platform.asl @@ -1,10 +1,10 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */
-Method(_WAK, 1) +Method(_PTS,1) { - Return (Package() { 0, 0 }) }
-Method(_PTS, 1) +Method(_WAK,1) { + Return(Package(){0,0}) }