From a9ebfe6646e4e3a56666c28b98289d6911d68fd7 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 17:44:38 +0000 Subject: [PATCH] print PHYSICAL_ADDRESSes as 2 32-bit values, instead of using %p date 2001.07.11.23.42.00; author agrover; state Exp; --- source/components/executer/exregion.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/source/components/executer/exregion.c b/source/components/executer/exregion.c index 89177863a..a1828467b 100644 --- a/source/components/executer/exregion.c +++ b/source/components/executer/exregion.c @@ -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 */