File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /** @file
2+ The definition block in ACPI table for ACPI0017 device under \\SB
3+
4+ Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
5+ This program and the accompanying materials
6+ are licensed and made available under the terms and conditions of the BSD License
7+ which accompanies this distribution. The full text of the license may be found at
8+ http://opensource.org/licenses/bsd-license.php
9+
10+ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11+ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12+ **/
13+
14+ DefinitionBlock (
15+ "" ,
16+ "SSDT" ,
17+ 2 ,
18+ "INTEL " ,
19+ "AACDTabl" ,
20+ 0x1000
21+ )
22+ {
23+ External (\_SB , DeviceObj )
24+
25+ Scope (\_SB ) {
26+ Device (AACD)
27+ {
28+ Name (_ADR , Zero ) // _ADR: Address
29+ Name (_HID , "ACPI0017" /* ACPI Audio Compositor Device */ ) // _HID: Hardware ID
30+ Name (_CID , "ACPI0017" /* ACPI Audio Compositor Device */ ) // _CID: Compatible ID
31+ Name (_DDN , "ACPI Audio Compositor" ) // _DDN: DOS Device Name
32+ Name (_UID , One ) // _UID: Unique ID
33+
34+ Method (_STA , 0 , NotSerialized ) // _STA: Status
35+ {
36+ Return (0x0F )
37+ }
38+
39+ Method (_DIS , 0 , NotSerialized ) // _DIS: Disable Device
40+ {
41+ }
42+ }
43+ }
44+ }
You can’t perform that action at this time.
0 commit comments