Skip to content
Snippets Groups Projects
Commit 411898dc authored by Bin Meng's avatar Bin Meng
Browse files

x86: acpi: Put sleepstates.asl to the common place


The supported sleep states are generic on Intel processors. Move the
ASL definition to the common place.

Signed-off-by: default avatarBin Meng <bmeng.cn@gmail.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent dc80d3b2
No related branches found
No related tags found
No related merge requests found
...@@ -36,4 +36,4 @@ Scope (\_SB) ...@@ -36,4 +36,4 @@ Scope (\_SB)
} }
/* Chipset specific sleep states */ /* Chipset specific sleep states */
#include "sleepstates.asl" #include <asm/acpi/sleepstates.asl>
...@@ -33,4 +33,4 @@ Scope (\_SB) ...@@ -33,4 +33,4 @@ Scope (\_SB)
} }
/* Chipset specific sleep states */ /* Chipset specific sleep states */
#include "sleepstates.asl" #include <asm/acpi/sleepstates.asl>
/*
* Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
Name(\_S0, Package() {0x0, 0x0, 0x0, 0x0})
Name(\_S3, Package() {0x5, 0x0, 0x0, 0x0})
Name(\_S4, Package() {0x6, 0x0, 0x0, 0x0})
Name(\_S5, Package() {0x7, 0x0, 0x0, 0x0})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment