xref: /aosp_15_r20/external/coreboot/src/soc/intel/common/acpi/acpi_wake_source.asl (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1/* SPDX-License-Identifier: GPL-2.0-only */
2
3Scope (\_SB)
4{
5	Method (_SWS)
6	{
7		/* Index into PM1 for device that caused wake */
8		Return (\PM1I)
9	}
10}
11
12Scope (\_GPE)
13{
14	Method (_SWS)
15	{
16		/* Index into GPE for device that caused wake */
17		Return (\GPEI)
18	}
19}
20