Deleted Added
full compact
4c4
< * $Revision: 6 $
---
> * $Revision: 11 $
12c12
< * Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp.
---
> * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.
268c268
< AcpiOsPrintf (" %8.8X%8.8X",
---
> AcpiOsPrintf (" %8.8X%8.8X",
435,436c435,436
< AcpiOsPrintf ("[Index] ");
< if (!ObjDesc->Reference.Where)
---
> AcpiOsPrintf ("[Index] ");
> switch (ObjDesc->Reference.TargetType)
438c438,458
< AcpiOsPrintf ("Uninitialized WHERE ptr");
---
> case ACPI_TYPE_BUFFER_FIELD:
> AcpiOsPrintf ("%p", ObjDesc->Reference.Object);
> AcpiDmDecodeInternalObject (ObjDesc->Reference.Object);
> break;
>
> case ACPI_TYPE_PACKAGE:
>
> AcpiOsPrintf ("%p", ObjDesc->Reference.Where);
> if (!ObjDesc->Reference.Where)
> {
> AcpiOsPrintf (" Uninitialized WHERE ptr");
> }
> else
> {
> AcpiDmDecodeInternalObject (*(ObjDesc->Reference.Where));
> }
> break;
>
> default:
> AcpiOsPrintf ("Unknown index target type");
> break;
440,443d459
< else
< {
< AcpiDmDecodeInternalObject (*(ObjDesc->Reference.Where));
< }
453c469
< case AML_REF_OF_OP:
---
> case AML_REF_OF_OP:
456a473,478
> if (!ObjDesc->Reference.Object)
> {
> AcpiOsPrintf ("Uninitialized reference subobject ptr");
> break;
> }
>
486,487c508
< AcpiOsPrintf ("<Obj> ");
< AcpiOsPrintf (" ");
---
> AcpiOsPrintf ("<Obj> ");
496c517
< AcpiOsPrintf ("<Not a valid ACPI Object Descriptor> [%s]",
---
> AcpiOsPrintf ("<Not a valid ACPI Object Descriptor> [%s]",