diff options
author | jkim <jkim@FreeBSD.org> | 2010-07-06 17:18:05 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2010-07-06 17:18:05 +0000 |
commit | 9ef1b91c0f59a1a15565c354b3e372ab265c7b5a (patch) | |
tree | 514e3ade7be23ac83127870abf009b5e5ae1d36f /compiler/aslstartup.c | |
parent | d54ec0eced2867779a0ed7f3c8043be7a3325934 (diff) | |
download | FreeBSD-src-9ef1b91c0f59a1a15565c354b3e372ab265c7b5a.zip FreeBSD-src-9ef1b91c0f59a1a15565c354b3e372ab265c7b5a.tar.gz |
Import ACPICA 20100702.
Diffstat (limited to 'compiler/aslstartup.c')
-rw-r--r-- | compiler/aslstartup.c | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/compiler/aslstartup.c b/compiler/aslstartup.c index 2588ccb..32c6ae4 100644 --- a/compiler/aslstartup.c +++ b/compiler/aslstartup.c @@ -131,10 +131,6 @@ BOOLEAN AslToFile = TRUE; /* Local prototypes */ -static void -AslInitializeGlobals ( - void); - static char ** AsDoWildcard ( char *DirectoryPathname, @@ -158,7 +154,7 @@ AslDetectSourceFileType ( * ******************************************************************************/ -static void +void AslInitializeGlobals ( void) { @@ -187,6 +183,9 @@ AslInitializeGlobals ( Gbl_Files[ASL_FILE_AML_OUTPUT].Filename = NULL; Gbl_Files[ASL_FILE_AML_OUTPUT].Handle = NULL; + + Gbl_Files[ASL_FILE_SOURCE_OUTPUT].Filename = NULL; + Gbl_Files[ASL_FILE_SOURCE_OUTPUT].Handle = NULL; } @@ -464,17 +463,6 @@ AslDoOneFile ( */ case ASL_INPUT_TYPE_ASCII_DATA: - /* - * Require use of command-line option to enable the data table - * compiler -- for now, until development of the compiler is - * complete. - */ - if (!Gbl_DataTableCompilerAvailable) - { - printf ("Data Table Compiler is not available yet\n"); - return (AE_SUPPORT); - } - Status = DtDoCompile (); if (Gbl_Signature) @@ -490,7 +478,6 @@ AslDoOneFile ( */ case ASL_INPUT_TYPE_ASCII_ASL: - /* ACPICA subsystem initialization */ Status = AdInitialize (); |