Fix for random error when compiling _OSI method

date	2005.06.17.19.50.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 15:41:32 +00:00
parent 2821c5dc68
commit fc685527fa

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: aslanalyze.c - check for semantic errors
* $Revision: 1.94 $
* $Revision: 1.95 $
*
*****************************************************************************/
@ -1642,6 +1642,11 @@ AnOperandTypecheckWalkEnd (
if (ArgOp->Asl.ParseOpcode == PARSEOP_METHODCALL)
{
if (!ACPI_STRCMP (ArgOp->Asl.ExternalName, "\\_OSI"))
{
return (AE_OK);
}
/* The lone arg is a method call, check it */
RequiredBtypes = AnMapArgTypeToBtype (ARGI_INTEGER);