Deleted Added
full compact
dsobject.c (117521) dsobject.c (126372)
1/******************************************************************************
2 *
3 * Module Name: dsobject - Dispatcher object management routines
1/******************************************************************************
2 *
3 * Module Name: dsobject - Dispatcher object management routines
4 * $Revision: 117 $
4 * $Revision: 119 $
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.

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

684
685
686 case AML_TYPE_METHOD_ARGUMENT:
687
688 /* Split the opcode into a base opcode + offset */
689
690 ObjDesc->Reference.Opcode = AML_ARG_OP;
691 ObjDesc->Reference.Offset = Opcode - AML_ARG_OP;
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.

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

684
685
686 case AML_TYPE_METHOD_ARGUMENT:
687
688 /* Split the opcode into a base opcode + offset */
689
690 ObjDesc->Reference.Opcode = AML_ARG_OP;
691 ObjDesc->Reference.Offset = Opcode - AML_ARG_OP;
692
693#ifndef ACPI_NO_METHOD_EXECUTION
694 Status = AcpiDsMethodDataGetNode (AML_ARG_OP, ObjDesc->Reference.Offset,
695 WalkState, (ACPI_NAMESPACE_NODE **) &ObjDesc->Reference.Object);
696#endif
692 break;
693
694 default: /* Other literals, etc.. */
695
696 if (Op->Common.AmlOpcode == AML_INT_NAMEPATH_OP)
697 {
698 /* Node was saved in Op */
699

--- 22 unchanged lines hidden ---
697 break;
698
699 default: /* Other literals, etc.. */
700
701 if (Op->Common.AmlOpcode == AML_INT_NAMEPATH_OP)
702 {
703 /* Node was saved in Op */
704

--- 22 unchanged lines hidden ---