mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-29 12:35:53 +01:00
84f41b2b58
Signed-off-by: Slice <sergey.slice@gmail.com>
22 lines
651 B
Plaintext
22 lines
651 B
Plaintext
/** @file
|
|
Differentiated System Description Table Fields (DSDT)
|
|
|
|
Copyright (c) 2021 - 2022, ARM Ltd. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
DefinitionBlock ("DsdtTable.aml", "DSDT", 2, "ARMLTD", "ARM-KVMT", 1) {
|
|
Scope (_SB) {
|
|
//
|
|
// Most ACPI tables for Kvmtool firmware are
|
|
// dynamically generated. The AML code is also
|
|
// generated at runtime for most components in
|
|
// appropriate SSDTs.
|
|
// Although there may not be much to describe
|
|
// in the DSDT, the DSDT table is mandatory.
|
|
// Therefore, add an empty stub for DSDT.
|
|
//
|
|
} // Scope (_SB)
|
|
}
|