From 324be1442e1128c75ed655d1f9616edefe1b0834 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 18:13:36 +0000 Subject: [PATCH] Some Lint changes; 16-bit changes date 2002.04.15.22.46.00; author rmoore1; state Exp; --- source/components/parser/pswalk.c | 3 +-- source/components/parser/psxface.c | 6 ++---- 2 files changed, 3 insertions(+), 6 deletions(-) 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);