Automated code cleanup

This commit is contained in:
rmoore1 2006-09-27 20:34:16 +00:00
parent 54333e97ad
commit 23c52e04d8
3 changed files with 6 additions and 7 deletions

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: dmtbdump - Dump ACPI data tables that contain no AML code
* $Revision: 1.13 $
* $Revision: 1.14 $
*
*****************************************************************************/
@ -298,7 +298,6 @@ AcpiDmDumpAsf (
ACPI_NATIVE_UINT DataLength = 0;
ACPI_NATIVE_UINT DataOffset = 0;
ACPI_NATIVE_UINT i;
/* No main table, only sub-tables */

View File

@ -3,7 +3,7 @@
/******************************************************************************
*
* Module Name: aslcompiler.y - Bison input file (ASL grammar and actions)
* $Revision: 1.103 $
* $Revision: 1.104 $
*
*****************************************************************************/
@ -1475,7 +1475,7 @@ ElseTerm
| PARSEOP_ELSE '{'
error '}' {$$ = AslDoError(); yyclearin;}
| PARSEOP_ELSE
| PARSEOP_ELSE
error {$$ = AslDoError(); yyclearin;}
| PARSEOP_ELSEIF '(' {$$ = TrCreateLeafNode (PARSEOP_ELSE);}
@ -1488,7 +1488,7 @@ ElseTerm
| PARSEOP_ELSEIF '('
error ')' {$$ = AslDoError(); yyclearin;}
| PARSEOP_ELSEIF
| PARSEOP_ELSEIF
error {$$ = AslDoError(); yyclearin;}
;

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: aemain - Main routine for the AcpiExec utility
* $Revision: 1.106 $
* $Revision: 1.107 $
*
*****************************************************************************/
@ -158,7 +158,7 @@ static void
usage (void)
{
printf ("Usage: acpiexec [Options] [InputFile]\n\n");
printf ("Where:\n");
printf (" -? Display this message\n");
printf (" -a Do not abort methods on error\n");