Deleted Added
full compact
dswstate.c (123315) dswstate.c (126372)
1/******************************************************************************
2 *
3 * Module Name: dswstate - Dispatcher parse tree walk management routines
1/******************************************************************************
2 *
3 * Module Name: dswstate - Dispatcher parse tree walk management routines
4 * $Revision: 76 $
4 * $Revision: 78 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp.
12 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.
13 * All rights reserved.
14 *
15 * 2. License
16 *
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
20 * property rights.

--- 392 unchanged lines hidden (view full) ---

413
414
415 ACPI_FUNCTION_NAME ("DsResultPush");
416
417
418 State = WalkState->Results;
419 if (!State)
420 {
13 * All rights reserved.
14 *
15 * 2. License
16 *
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
20 * property rights.

--- 392 unchanged lines hidden (view full) ---

413
414
415 ACPI_FUNCTION_NAME ("DsResultPush");
416
417
418 State = WalkState->Results;
419 if (!State)
420 {
421 ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "No result stack frame\n"));
421 ACPI_REPORT_ERROR (("No result stack frame during push\n"));
422 return (AE_AML_INTERNAL);
423 }
424
425 if (State->Results.NumResults == ACPI_OBJ_NUM_OPERANDS)
426 {
427 ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
428 "Result stack overflow: Obj=%p State=%p Num=%X\n",
429 Object, WalkState, State->Results.NumResults));

--- 781 unchanged lines hidden ---
422 return (AE_AML_INTERNAL);
423 }
424
425 if (State->Results.NumResults == ACPI_OBJ_NUM_OPERANDS)
426 {
427 ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
428 "Result stack overflow: Obj=%p State=%p Num=%X\n",
429 Object, WalkState, State->Results.NumResults));

--- 781 unchanged lines hidden ---