mirror of
https://github.com/acpica/acpica/
synced 2025-01-17 14:59:56 +03:00
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:
parent
3b994dc860
commit
a9ebfe6646
@ -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 */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user