Deleted Added
full compact
4c4
< * $Revision: 87 $
---
> * $Revision: 88 $
286c286,287
< AcpiGbl_AcpiTables[i].Pointer, AcpiGbl_AcpiTables[i].Length);
---
> AcpiGbl_AcpiTables[i].Pointer,
> (UINT32) AcpiGbl_AcpiTables[i].Length);
786c787
< AcpiOsPrintf ("%32s", Buffer.Pointer);
---
> AcpiOsPrintf ("%32s", (char *) Buffer.Pointer);
797c798,799
< AcpiOsPrintf (" #Args %d Concurrency %X", ObjDesc->Method.ParamCount, ObjDesc->Method.Concurrency);
---
> AcpiOsPrintf (" #Args %d Concurrency %X",
> ObjDesc->Method.ParamCount, ObjDesc->Method.Concurrency);
801c803,805
< AcpiOsPrintf (" Value %X", ObjDesc->Integer.Value);
---
> AcpiOsPrintf (" Value %8.8X%8.8X",
> ACPI_HIDWORD (ObjDesc->Integer.Value),
> ACPI_LODWORD (ObjDesc->Integer.Value));
809c813,817
< AcpiOsPrintf (" SpaceId %X Address %X Length %X", ObjDesc->Region.SpaceId, ObjDesc->Region.Address, ObjDesc->Region.Length);
---
> AcpiOsPrintf (" SpaceId %X Length %X Address %8.8X%8.8X",
> ObjDesc->Region.SpaceId,
> ObjDesc->Region.Length,
> ACPI_HIDWORD (ObjDesc->Region.Address),
> ACPI_LODWORD (ObjDesc->Region.Address));
929c937
< AcpiOsPrintf ("%32s (%p) - %s\n", Buffer.Pointer, ObjHandle,
---
> AcpiOsPrintf ("%32s (%p) - %s\n", (char *) Buffer.Pointer, ObjHandle,