repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
drivers/usb/acpi: Don't add GPIOs to _CRS for Intel Bluetooth
[coreboot2.git]
/
src
/
soc
/
amd
/
common
/
acpi
/
acpi_wake_source.asl
blob
de9cb257966c54e19ab06c6bcd8741d495d6b2cf
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
/* The SoC-specific code needs to provide the PM1I and GPEI fields */
4
5
Scope (\_SB)
6
{
7
Method (_SWS)
8
{
9
/* Index into PM1 for device that caused wake */
10
Return (\PM1I)
11
}
12
}
13
14
Scope (\_GPE)
15
{
16
Method (_SWS)
17
{
18
/* Index into GPE for device that caused wake */
19
Return (\GPEI)
20
}
21
}