Deleted Added
full compact
dsopcode.c (123315) dsopcode.c (126372)
1/******************************************************************************
2 *
3 * Module Name: dsopcode - Dispatcher Op Region support and handling of
4 * "control" opcodes
1/******************************************************************************
2 *
3 * Module Name: dsopcode - Dispatcher Op Region support and handling of
4 * "control" opcodes
5 * $Revision: 91 $
5 * $Revision: 93 $
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 - 2003, Intel Corp.
13 * Some or all of this work - Copyright (c) 1999 - 2004, 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.

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

322 return_ACPI_STATUS (AE_OK);
323 }
324
325 /* Get the Buffer node */
326
327 Node = ObjDesc->Buffer.Node;
328 if (!Node)
329 {
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.

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

322 return_ACPI_STATUS (AE_OK);
323 }
324
325 /* Get the Buffer node */
326
327 Node = ObjDesc->Buffer.Node;
328 if (!Node)
329 {
330 ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
331 "No pointer back to NS node in buffer %p\n", ObjDesc));
330 ACPI_REPORT_ERROR ((
331 "No pointer back to NS node in buffer obj %p\n", ObjDesc));
332 return_ACPI_STATUS (AE_AML_INTERNAL);
333 }
334
335 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Buffer Arg Init\n"));
336
337 /* Execute the AML code for the TermArg arguments */
338
339 Status = AcpiDsExecuteArguments (Node, Node,

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

371 return_ACPI_STATUS (AE_OK);
372 }
373
374 /* Get the Package node */
375
376 Node = ObjDesc->Package.Node;
377 if (!Node)
378 {
332 return_ACPI_STATUS (AE_AML_INTERNAL);
333 }
334
335 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Buffer Arg Init\n"));
336
337 /* Execute the AML code for the TermArg arguments */
338
339 Status = AcpiDsExecuteArguments (Node, Node,

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

371 return_ACPI_STATUS (AE_OK);
372 }
373
374 /* Get the Package node */
375
376 Node = ObjDesc->Package.Node;
377 if (!Node)
378 {
379 ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
379 ACPI_REPORT_ERROR ((
380 "No pointer back to NS node in package %p\n", ObjDesc));
381 return_ACPI_STATUS (AE_AML_INTERNAL);
382 }
383
384 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Package Arg Init\n"));
385
386 /* Execute the AML code for the TermArg arguments */
387

--- 887 unchanged lines hidden ---
380 "No pointer back to NS node in package %p\n", ObjDesc));
381 return_ACPI_STATUS (AE_AML_INTERNAL);
382 }
383
384 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Package Arg Init\n"));
385
386 /* Execute the AML code for the TermArg arguments */
387

--- 887 unchanged lines hidden ---