diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2010-05-28 18:46:48 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2010-05-28 18:46:48 +0000 |
commit | f2bf96d30fe08965ffd53a28099131ac030e43d5 (patch) | |
tree | 2429d13f44367948f54b059645bd882e2e28f2d4 /compiler/aslcompiler.h | |
parent | 5b663f0c698a9ecf7e562f7f7f730d056e499b5f (diff) |
Notes
Diffstat (limited to 'compiler/aslcompiler.h')
-rw-r--r-- | compiler/aslcompiler.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/compiler/aslcompiler.h b/compiler/aslcompiler.h index 804713b00d97..02adaa4764f2 100644 --- a/compiler/aslcompiler.h +++ b/compiler/aslcompiler.h @@ -222,6 +222,10 @@ void CmCleanupAndExit ( void); +ACPI_STATUS +FlCheckForAscii ( + ASL_FILE_INFO *FileInfo); + /* * aslanalyze - semantic analysis @@ -426,6 +430,16 @@ CgGenerateAmlOutput ( /* + * aslfile + */ +void +FlOpenFile ( + UINT32 FileId, + char *Filename, + char *Mode); + + +/* * asllength - calculate/adjust AML package lengths */ ACPI_STATUS @@ -1003,5 +1017,12 @@ RsDoWordBusNumberDescriptor ( ACPI_PARSE_OBJECT *Op, UINT32 CurrentByteOffset); +/* + * Entry to data table compiler subsystem + */ +ACPI_STATUS +DtDoCompile( + void); + #endif /* __ASLCOMPILER_H */ |