Fix to properly set table ID in created namespace objects. Removed

static DSDT table ID.


date	2003.05.09.20.02.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:08:06 +00:00
parent 1c00250dbf
commit 5cdce39d0a

View File

@ -2,7 +2,7 @@
*
* Module Name: dsopcode - Dispatcher Op Region support and handling of
* "control" opcodes
* $Revision: 1.86 $
* $Revision: 1.87 $
*
*****************************************************************************/
@ -174,7 +174,7 @@ AcpiDsExecuteArguments (
/* Create and initialize a new parser state */
WalkState = AcpiDsCreateWalkState (TABLE_ID_DSDT, NULL, NULL, NULL);
WalkState = AcpiDsCreateWalkState (0, NULL, NULL, NULL);
if (!WalkState)
{
return_ACPI_STATUS (AE_NO_MEMORY);
@ -218,7 +218,7 @@ AcpiDsExecuteArguments (
/* Create and initialize a new parser state */
WalkState = AcpiDsCreateWalkState (TABLE_ID_DSDT, NULL, NULL, NULL);
WalkState = AcpiDsCreateWalkState (0, NULL, NULL, NULL);
if (!WalkState)
{
return_ACPI_STATUS (AE_NO_MEMORY);