diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-10-08 09:06:04 +0200 |
---|---|---|
committer | Michael Niewöhner <foss@mniewoehner.de> | 2021-01-28 21:31:34 +0000 |
commit | 85a2026800f3d6e1994d69b860f0a08b85de2159 (patch) | |
tree | 9a1bf11b8d982a1f44e7601b5fba6519ca0b67a0 /src/mainboard | |
parent | 2976d3286ed294bbd4c8f01e5f181709ce65accc (diff) |
mb/amd/padmelon: Convert to ASL 2.0 syntax
Change-Id: I88c1c907916c3de51f6b3b72f7a49e90a1b1a383
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/46148
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/amd/padmelon/acpi/sleep.asl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/amd/padmelon/acpi/sleep.asl b/src/mainboard/amd/padmelon/acpi/sleep.asl index 89c6fa1575..0cbf8e3211 100644 --- a/src/mainboard/amd/padmelon/acpi/sleep.asl +++ b/src/mainboard/amd/padmelon/acpi/sleep.asl @@ -26,10 +26,10 @@ Method(_PTS, 1) { /* DBGO("\n") */ /* Clear wake status structure. */ - Store(0, PEWD) - Store(0, Index(WKST,0)) - Store(0, Index(WKST,1)) - Store(7, UPWS) + PEWD = 0 + WKST [0] = 0 + WKST [1] = 0 + UPWS = 7 } /* End Method(\_PTS) */ /* |