1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| /** @file
| This file contains the Aspire VN7-572G SSDT Table ASL code.
|
| Copyright (c) 2021, Baruch Binyamin Doron
| SPDX-License-Identifier: BSD-2-Clause-Patent
|
| **/
|
| DefinitionBlock (
| "Board.aml",
| "SSDT",
| 0x02,
| "ACRSKL",
| "AcerSKL ",
| 0x20141018
| )
| {
| External (\MDBG, MethodObj)
|
| // Debug print helper
| Method (DBGH, 1)
| {
| // If present, print to ACPI debug feature's buffer
| If (CondRefOf (\MDBG))
| {
| \MDBG (Arg0)
| }
| // Always use "Debug" object for operating system
| Debug = Arg0
| }
|
| Include ("ec.asl")
| Include ("mainboard.asl")
| }
|
|