summaryrefslogtreecommitdiff
path: root/source/compiler/dttable1.c
diff options
context:
space:
mode:
authorLawrence Hileman <larry.hileman@xconn-tech.com>2022-01-07 16:33:40 -0800
committerLawrence Hileman <larry.hileman@xconn-tech.com>2022-01-07 16:33:40 -0800
commit19b11f91660b1a38a8e9655b0b1a4ad51ec4db1e (patch)
tree8f3e120a2c85f2c2585b55bf280152fc7df8824f /source/compiler/dttable1.c
parentcf7d6ccc009aa04a475bca81dc7af0342bb7c1eb (diff)
downloadacpica-19b11f91660b1a38a8e9655b0b1a4ad51ec4db1e.tar.gz
Add the subtable CFMWS to the CEDT table
Diffstat (limited to 'source/compiler/dttable1.c')
-rw-r--r--source/compiler/dttable1.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/compiler/dttable1.c b/source/compiler/dttable1.c
index 2e6a85691..39cbde8b5 100644
--- a/source/compiler/dttable1.c
+++ b/source/compiler/dttable1.c
@@ -607,18 +607,18 @@ DtCompileCedt (
switch (CedtHeader->Type)
{
case ACPI_CEDT_TYPE_CHBS:
-
+ Status = DtCompileTable (PFieldList, AcpiDmTableInfoCedt0, &Subtable);
+ break;
+ case ACPI_CEDT_TYPE_CFMWS:
+ Status = DtCompileTable (PFieldList, AcpiDmTableInfoCedt1, &Subtable);
break;
default:
-
DtFatal (ASL_MSG_UNKNOWN_SUBTABLE, SubtableStart, "CEDT");
return (AE_ERROR);
}
/* CEDT Subtable */
-
- Status = DtCompileTable (PFieldList, AcpiDmTableInfoCedt0, &Subtable);
if (ACPI_FAILURE (Status))
{
return (Status);