1 | /** @file
|
---|
2 | Differentiated System Description Table Fields (DSDT)
|
---|
3 |
|
---|
4 | Copyright (c) 2021 - 2022, ARM Ltd. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | **/
|
---|
8 |
|
---|
9 | DefinitionBlock ("DsdtTable.aml", "DSDT", 2, "ARMLTD", "ARM-KVMT", 1) {
|
---|
10 | Scope (_SB) {
|
---|
11 | //
|
---|
12 | // Most ACPI tables for Kvmtool firmware are
|
---|
13 | // dynamically generated. The AML code is also
|
---|
14 | // generated at runtime for most components in
|
---|
15 | // appropriate SSDTs.
|
---|
16 | // Although there may not be much to describe
|
---|
17 | // in the DSDT, the DSDT table is mandatory.
|
---|
18 | // Therefore, add an empty stub for DSDT.
|
---|
19 | //
|
---|
20 | } // Scope (_SB)
|
---|
21 | }
|
---|