summaryrefslogtreecommitdiff
path: root/source/compiler/dtcompiler.h
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2017-09-29 17:08:30 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2017-09-29 17:08:30 +0000
commit2c673001fb88105f2d160032c4d4b76cb518e37f (patch)
tree3fc3b6aef8822267bd455907a6fce55c3f98b2ed /source/compiler/dtcompiler.h
parent0810e26699e1b40b9384eca2137be6155de0a5ba (diff)
Notes
Diffstat (limited to 'source/compiler/dtcompiler.h')
-rw-r--r--source/compiler/dtcompiler.h33
1 files changed, 17 insertions, 16 deletions
diff --git a/source/compiler/dtcompiler.h b/source/compiler/dtcompiler.h
index 90fad8896f8a..941e2c65e86d 100644
--- a/source/compiler/dtcompiler.h
+++ b/source/compiler/dtcompiler.h
@@ -154,7 +154,6 @@
#ifndef _DTCOMPILER
#define _DTCOMPILER
-#include <stdio.h>
#include "acdisasm.h"
@@ -510,18 +509,6 @@ void
DtSetTableLength(
void);
-DT_SUBTABLE *
-UtSubtableCacheCalloc (
- void);
-
-DT_FIELD *
-UtFieldCacheCalloc (
- void);
-
-void
-DtDeleteCaches (
- void);
-
/* dttable - individual table compilation */
@@ -622,15 +609,19 @@ DtCompileNfit (
void **PFieldList);
ACPI_STATUS
-DtCompilePmtt (
+DtCompilePcct (
void **PFieldList);
ACPI_STATUS
-DtCompilePptt (
+DtCompilePdtt (
void **PFieldList);
ACPI_STATUS
-DtCompilePcct (
+DtCompilePmtt (
+ void **PFieldList);
+
+ACPI_STATUS
+DtCompilePptt (
void **PFieldList);
ACPI_STATUS
@@ -642,6 +633,10 @@ DtCompileS3pt (
DT_FIELD **PFieldList);
ACPI_STATUS
+DtCompileSdev (
+ void **PFieldList);
+
+ACPI_STATUS
DtCompileSlic (
void **PFieldList);
@@ -662,6 +657,10 @@ DtCompileTcpa (
void **PFieldList);
ACPI_STATUS
+DtCompileTpm2 (
+ void **PFieldList);
+
+ACPI_STATUS
DtCompileUefi (
void **PFieldList);
@@ -724,6 +723,7 @@ extern const unsigned char TemplateMsdm[];
extern const unsigned char TemplateMtmr[];
extern const unsigned char TemplateNfit[];
extern const unsigned char TemplatePcct[];
+extern const unsigned char TemplatePdtt[];
extern const unsigned char TemplatePmtt[];
extern const unsigned char TemplatePptt[];
extern const unsigned char TemplateRasf[];
@@ -731,6 +731,7 @@ extern const unsigned char TemplateRsdt[];
extern const unsigned char TemplateS3pt[];
extern const unsigned char TemplateSbst[];
extern const unsigned char TemplateSdei[];
+extern const unsigned char TemplateSdev[];
extern const unsigned char TemplateSlic[];
extern const unsigned char TemplateSlit[];
extern const unsigned char TemplateSpcr[];