Ran acpisrc source cleanup

date	2000.09.15.17.16.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 18:07:28 +00:00
parent ece95aaa20
commit 18f809922f
2 changed files with 5 additions and 17 deletions

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: psparse - Parser top level AML parse routines
* $Revision: 1.54 $
* $Revision: 1.55 $
*
*****************************************************************************/
@ -729,7 +729,7 @@ AcpiPsParseLoop (
AmlOffset = ParserState->Aml - ParserState->AmlStart;
Opcode = AcpiPsPeekOpcode (ParserState);
/*
* First cut to determine what we have found:
* 1) A valid AML opcode
@ -772,11 +772,6 @@ AcpiPsParseLoop (
}
/* Create Op structure and append to parent's argument list */
if (AcpiPsIsNamedOp (Opcode))
@ -850,9 +845,6 @@ AcpiPsParseLoop (
}
else
{
/* Not a named opcode, just allocate Op and append to parent */
@ -916,8 +908,6 @@ AcpiPsParseLoop (
}
/* Start ArgCount at zero because we don't know if there are any args yet */
ArgCount = 0;
@ -999,8 +989,6 @@ AcpiPsParseLoop (
}
/*
* Zero ArgCount means that all arguments for this op have been processed
*/
@ -1029,7 +1017,7 @@ AcpiPsParseLoop (
* know the length.
*/
DeferredOp->Length = ParserState->Aml -
DeferredOp->Length = ParserState->Aml -
DeferredOp->Data;
}
}

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: psscope - Parser scope stack management routines
* $Revision: 1.19 $
* $Revision: 1.20 $
*
*****************************************************************************/
@ -327,7 +327,7 @@ AcpiPsPopScope (
}
DEBUG_PRINT (TRACE_PARSE,
DEBUG_PRINT (TRACE_PARSE,
("PsPopScope: Popped Op %p Args %d\n", *Op, *ArgCount));
return_VOID;
}