Deleted Added
full compact
186c186
< ReturnDesc = AcpiUtCreateInternalObject (ACPI_TYPE_INTEGER);
---
> ReturnDesc = AcpiUtCreateIntegerObject (AcpiOsGetTimer ());
192d191
< ReturnDesc->Integer.Value = AcpiOsGetTimer ();
736c735
< ReturnDesc = AcpiUtCreateInternalObject (ACPI_TYPE_INTEGER);
---
> ReturnDesc = AcpiUtCreateIntegerObject ((UINT64) 0);
841c840
< ReturnDesc = AcpiUtCreateInternalObject (ACPI_TYPE_INTEGER);
---
> ReturnDesc = AcpiUtCreateIntegerObject ((UINT64) Type);
847,848d845
<
< ReturnDesc->Integer.Value = Type;
920c917
< ReturnDesc = AcpiUtCreateInternalObject (ACPI_TYPE_INTEGER);
---
> ReturnDesc = AcpiUtCreateIntegerObject (Value);
926,927d922
<
< ReturnDesc->Integer.Value = Value;
1091a1087,1090
> *
> * Since we are returning the value of the buffer at the
> * indexed location, we don't need to add an additional
> * reference to the buffer itself.
1093c1092,1093
< ReturnDesc = AcpiUtCreateInternalObject (ACPI_TYPE_INTEGER);
---
> ReturnDesc = AcpiUtCreateIntegerObject ((UINT64)
> TempDesc->Buffer.Pointer[Operand[0]->Reference.Value]);
1099,1106d1098
<
< /*
< * Since we are returning the value of the buffer at the
< * indexed location, we don't need to add an additional
< * reference to the buffer itself.
< */
< ReturnDesc->Integer.Value =
< TempDesc->Buffer.Pointer[Operand[0]->Reference.Value];