diff --git a/source/components/parser/pswalk.c b/source/components/parser/pswalk.c index 55978394a..0369ef8c0 100644 --- a/source/components/parser/pswalk.c +++ b/source/components/parser/pswalk.c @@ -1,7 +1,7 @@ /****************************************************************************** * * Module Name: pswalk - Parser routines to walk parsed op tree(s) - * $Revision: 1.66 $ + * $Revision: 1.67 $ * *****************************************************************************/ @@ -353,7 +353,6 @@ AcpiPsDeleteParseTree ( return_VOID; } - WalkState = AcpiDsCreateWalkState (TABLE_ID_DSDT, NULL, NULL, Thread); if (!WalkState) { diff --git a/source/components/parser/psxface.c b/source/components/parser/psxface.c index 7ffd3942c..a5a635009 100644 --- a/source/components/parser/psxface.c +++ b/source/components/parser/psxface.c @@ -1,7 +1,7 @@ /****************************************************************************** * * Module Name: psxface - Parser external interfaces - * $Revision: 1.63 $ + * $Revision: 1.64 $ * *****************************************************************************/ @@ -240,7 +240,6 @@ AcpiPsxExecute ( Status = AcpiPsParseAml (WalkState); AcpiPsDeleteParseTree (Op); - /* * 2) Execute the method. Performs second pass parse simultaneously */ @@ -263,8 +262,7 @@ AcpiPsxExecute ( /* Create and initialize a new walk state */ - WalkState = AcpiDsCreateWalkState (TABLE_ID_DSDT, - NULL, NULL, NULL); + WalkState = AcpiDsCreateWalkState (TABLE_ID_DSDT, NULL, NULL, NULL); if (!WalkState) { return_ACPI_STATUS (AE_NO_MEMORY);