Deleted Added
full compact
dswexec.c (107325) dswexec.c (114237)
1/******************************************************************************
2 *
3 * Module Name: dswexec - Dispatcher method execution callbacks;
4 * dispatch to interpreter.
1/******************************************************************************
2 *
3 * Module Name: dswexec - Dispatcher method execution callbacks;
4 * dispatch to interpreter.
5 * $Revision: 96 $
5 * $Revision: 98 $
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.
13 * Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp.
14 * All rights reserved.
15 *
16 * 2. License
17 *
18 * 2.1. This is your license from Intel Corp. under its intellectual property
19 * rights. You may have additional license terms from the party that provided
20 * you this software, covering your right to use that party's intellectual
21 * property rights.

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

758 /*
759 * Delete the result op if and only if:
760 * Parent will not use the result -- such as any
761 * non-nested type2 op in a method (parent will be method)
762 */
763 AcpiDsDeleteResultIfNotUsed (Op, WalkState->ResultObj, WalkState);
764 }
765
14 * All rights reserved.
15 *
16 * 2. License
17 *
18 * 2.1. This is your license from Intel Corp. under its intellectual property
19 * rights. You may have additional license terms from the party that provided
20 * you this software, covering your right to use that party's intellectual
21 * property rights.

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

758 /*
759 * Delete the result op if and only if:
760 * Parent will not use the result -- such as any
761 * non-nested type2 op in a method (parent will be method)
762 */
763 AcpiDsDeleteResultIfNotUsed (Op, WalkState->ResultObj, WalkState);
764 }
765
766#if _UNDER_DEVELOPMENT
767
768 if (WalkState->ParserState.Aml == WalkState->ParserState.AmlEnd)
769 {
770 AcpiDbMethodEnd (WalkState);
771 }
772#endif
773
766 /* Always clear the object stack */
767
768 WalkState->NumOperands = 0;
769 return_ACPI_STATUS (Status);
770}
771
772
774 /* Always clear the object stack */
775
776 WalkState->NumOperands = 0;
777 return_ACPI_STATUS (Status);
778}
779
780