diff options
author | Sean Rhodes <sean@starlabs.systems> | 2022-02-27 19:16:26 +0000 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-03-10 15:05:49 +0000 |
commit | 56a6e0eb7e142a00bcc1eca1a7280448f8c43170 (patch) | |
tree | 9dfa50829c90dcc322bc4b81d9a97b25d1f971cd /src/mainboard/starlabs/labtop/acpi | |
parent | 6074b20bd1f16fa789e80a91de046a28d86b9b37 (diff) |
mb/starlabs/labtop: Always run PTS
Remove the dependency on Arg0 so PTS always runs.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: I96c44397d62848231039330a32de781f75bb56bb
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62421
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Andy Pont <andy.pont@sdcsystems.com>
Diffstat (limited to 'src/mainboard/starlabs/labtop/acpi')
-rw-r--r-- | src/mainboard/starlabs/labtop/acpi/sleep.asl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mainboard/starlabs/labtop/acpi/sleep.asl b/src/mainboard/starlabs/labtop/acpi/sleep.asl index 9dc818d04d..b4df10aedd 100644 --- a/src/mainboard/starlabs/labtop/acpi/sleep.asl +++ b/src/mainboard/starlabs/labtop/acpi/sleep.asl @@ -2,10 +2,7 @@ Method (MPTS, 1, NotSerialized) { - If (Arg0) - { - RPTS (Arg0) - } + RPTS (Arg0) } Method (MWAK, 1, NotSerialized) |