diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-05-17 17:49:07 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-05-20 17:49:21 +0000 |
commit | 0da07d66bd131b5ca5c694a069bf8ea1838f9951 (patch) | |
tree | d1df9162bc96e0fe1ab2a6b388af25ab349cf686 /src/mainboard/asus | |
parent | 81c2e02bb49f517e21e89806e372d7708c54beb1 (diff) |
mb/asus/p8z77-m_pro: Reorder `_PTS` and `_WAK`
Done to preserve reproducibility when switching to a variant setup.
Change-Id: I4f3663d3b58c6245c9b73d370a48b8745ea5b95b
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54410
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/asus')
-rw-r--r-- | src/mainboard/asus/p8z77-m_pro/acpi/platform.asl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/asus/p8z77-m_pro/acpi/platform.asl b/src/mainboard/asus/p8z77-m_pro/acpi/platform.asl index 7b1b2b2975..90cf05bf75 100644 --- a/src/mainboard/asus/p8z77-m_pro/acpi/platform.asl +++ b/src/mainboard/asus/p8z77-m_pro/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}) } |