mb/lenovo/t420s: Reorder selects alphabetically
[coreboot.git] / src / mainboard / starlabs / labtop / acpi / mainboard.asl
blob5bdde36bb701c29f3b94e3a2217d2ad40dfe3c55
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 Scope (\_SB) {
4         #include "sleep.asl"
7 /*
8  * This platform doesn't support SoundWire but there
9  * is a kernel bug in some 5.10.x releases.
10  *
11  * Debian testing live CD (at 4th Feb 2021) uses 5.10.9-1. More
12  * details can be found at https://bit.ly/3ttdffG but it appears to
13  * be triggered by missing SoundWire ACPI entries.
14  *
15  * Add the minimal set to make it work again.
16  */
17 Scope (_SB.PCI0.HDAS)
19         Device (SNDW)
20         {
21                 Name (_ADR, 0x40000000)
23                 Name (_CID, Package (0x02)
24                 {
25                         "PRP0001",
26                         "PNP0A05"
27                 })
29                 Method (_STA, 0, NotSerialized)
30                 {
31                         Return (0x0B)
32                 }
33         }