summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-05-17 12:55:37 +0200
committerPatrick Georgi <pgeorgi@google.com>2021-05-18 11:48:34 +0000
commitde649bc01da910a2bcf5aaed1701beec7c4694e7 (patch)
treef3c94e8dfbed4d16a1809741cd704a2703227cee
parentd42fc11b276ac20a7d2e8467fa6cda1f25322071 (diff)
downloadcoreboot-de649bc01da910a2bcf5aaed1701beec7c4694e7.tar.xz
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> Reviewed-on: https://review.coreboot.org/c/coreboot/+/54371 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tristan Corrick <tristan@corrick.kiwi>
-rw-r--r--src/mainboard/asus/h61m-cs/acpi/platform.asl6
-rw-r--r--src/mainboard/asus/p8h61-m_lx/acpi/platform.asl6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/mainboard/asus/h61m-cs/acpi/platform.asl b/src/mainboard/asus/h61m-cs/acpi/platform.asl
index 7b1b2b2975..90cf05bf75 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(_WAK,1)
+Method(_PTS,1)
{
- Return(Package(){0,0})
}
-Method(_PTS,1)
+Method(_WAK,1)
{
+ Return(Package(){0,0})
}
diff --git a/src/mainboard/asus/p8h61-m_lx/acpi/platform.asl b/src/mainboard/asus/p8h61-m_lx/acpi/platform.asl
index 77a029589a..90cf05bf75 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})
}