From 5b663f0c698a9ecf7e562f7f7f730d056e499b5f Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Wed, 28 Apr 2010 21:50:57 +0000 Subject: Import ACPICA 20100428. --- compiler/aslcompile.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'compiler/aslcompile.c') diff --git a/compiler/aslcompile.c b/compiler/aslcompile.c index 90e90991b7e93..d6cb8adc7387a 100644 --- a/compiler/aslcompile.c +++ b/compiler/aslcompile.c @@ -177,7 +177,8 @@ AslCompilerSignon ( { Prefix = "; "; } - else if (Gbl_HexOutputFlag == HEX_OUTPUT_C) + else if ((Gbl_HexOutputFlag == HEX_OUTPUT_C) || + (Gbl_HexOutputFlag == HEX_OUTPUT_ASL)) { FlPrintFile (ASL_FILE_HEX_OUTPUT, "/*\n"); Prefix = " * "; @@ -265,7 +266,8 @@ AslCompilerFileHeader ( { Prefix = "; "; } - else if (Gbl_HexOutputFlag == HEX_OUTPUT_C) + else if ((Gbl_HexOutputFlag == HEX_OUTPUT_C) || + (Gbl_HexOutputFlag == HEX_OUTPUT_ASL)) { Prefix = " * "; } -- cgit v1.2.3