print PHYSICAL_ADDRESSes as 2 32-bit values, instead of using %p

date	2001.07.11.23.42.00;	author agrover;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:44:38 +00:00
parent 3b994dc860
commit a9ebfe6646

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: exregion - ACPI default OpRegion (address space) handlers
* $Revision: 1.52 $
* $Revision: 1.53 $
*
*****************************************************************************/
@ -242,7 +242,8 @@ AcpiExSystemMemorySpaceHandler (
((ACPI_INTEGER) Address - (ACPI_INTEGER) MemInfo->MappedPhysicalAddress);
DEBUG_PRINT ((TRACE_OPREGION | VERBOSE_INFO),
("IO %d (%d width) Address=%p\n", Function, BitWidth, Address));
("IO %d (%d width) Address=%8.8lX%8.8lX\n", Function, BitWidth,
HIDWORD(Address), LODWORD(Address)));
/* Perform the memory read or write */
@ -332,7 +333,8 @@ AcpiExSystemIoSpaceHandler (
DEBUG_PRINT ((TRACE_OPREGION | VERBOSE_INFO),
("IO %d (%d width) Address=%p\n", Function, BitWidth, Address));
("IO %d (%d width) Address=%8.8lX%8.8lX\n", Function, BitWidth,
HIDWORD(Address), LODWORD(Address)));
/* Decode the function parameter */