Deleted Added
full compact
exresolv.c (123315) exresolv.c (126372)
1
2/******************************************************************************
3 *
4 * Module Name: exresolv - AML Interpreter object resolution
1
2/******************************************************************************
3 *
4 * Module Name: exresolv - AML Interpreter object resolution
5 * $Revision: 121 $
5 * $Revision: 123 $
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.

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

318 }
319 break;
320
321
322 default:
323
324 /* Invalid reference object */
325
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.

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

318 }
319 break;
320
321
322 default:
323
324 /* Invalid reference object */
325
326 ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
327 "Unknown TargetType %X in Index/Reference obj %p\n",
326 ACPI_REPORT_ERROR ((
327 "During resolve, Unknown TargetType %X in Index/Reference obj %p\n",
328 StackDesc->Reference.TargetType, StackDesc));
329 Status = AE_AML_INTERNAL;
330 break;
331 }
332 break;
333
334
335 case AML_REF_OF_OP:
336 case AML_DEBUG_OP:
337 case AML_LOAD_OP:
338
339 /* Just leave the object as-is */
340
341 break;
342
343
344 default:
345
328 StackDesc->Reference.TargetType, StackDesc));
329 Status = AE_AML_INTERNAL;
330 break;
331 }
332 break;
333
334
335 case AML_REF_OF_OP:
336 case AML_DEBUG_OP:
337 case AML_LOAD_OP:
338
339 /* Just leave the object as-is */
340
341 break;
342
343
344 default:
345
346 ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Unknown Reference opcode %X (%s) in %p\n",
346 ACPI_REPORT_ERROR (("During resolve, Unknown Reference opcode %X (%s) in %p\n",
347 Opcode, AcpiPsGetOpcodeName (Opcode), StackDesc));
348 Status = AE_AML_INTERNAL;
349 break;
350 }
351 break;
352
353
354 case ACPI_TYPE_BUFFER:

--- 222 unchanged lines hidden ---
347 Opcode, AcpiPsGetOpcodeName (Opcode), StackDesc));
348 Status = AE_AML_INTERNAL;
349 break;
350 }
351 break;
352
353
354 case ACPI_TYPE_BUFFER:

--- 222 unchanged lines hidden ---