summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/exregion.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/exregion.c')
-rw-r--r--sys/contrib/dev/acpica/exregion.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/contrib/dev/acpica/exregion.c b/sys/contrib/dev/acpica/exregion.c
index dd9327d..7ae052f 100644
--- a/sys/contrib/dev/acpica/exregion.c
+++ b/sys/contrib/dev/acpica/exregion.c
@@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: amregion - ACPI default OpRegion (address space) handlers
- * $Revision: 40 $
+ * $Revision: 41 $
*
*****************************************************************************/
@@ -250,7 +250,7 @@ AcpiAmlSystemMemorySpaceHandler (
case ADDRESS_SPACE_READ:
DEBUG_PRINT ((TRACE_OPREGION | VERBOSE_INFO),
- ("Read (%d width) Address:0x%X\n", BitWidth, Address));
+ ("Read (%d width) Address=%p\n", BitWidth, Address));
switch (BitWidth)
{
@@ -273,7 +273,7 @@ AcpiAmlSystemMemorySpaceHandler (
case ADDRESS_SPACE_WRITE:
DEBUG_PRINT ((TRACE_OPREGION | VERBOSE_INFO),
- ("Write (%d width) Address:0x%p Value 0x%X\n",
+ ("Write (%d width) Address=%p Value %X\n",
BitWidth, Address, *Value));
switch (BitWidth)
@@ -344,7 +344,7 @@ AcpiAmlSystemIoSpaceHandler (
case ADDRESS_SPACE_READ:
DEBUG_PRINT ((TRACE_OPREGION | VERBOSE_INFO),
- ("Read(%d width) Address:0x%08x\n", BitWidth, Address));
+ ("Read(%d width) Address=%p\n", BitWidth, Address));
switch (BitWidth)
{
@@ -375,7 +375,7 @@ AcpiAmlSystemIoSpaceHandler (
case ADDRESS_SPACE_WRITE:
DEBUG_PRINT ((TRACE_OPREGION | VERBOSE_INFO),
- ("Write(%d width) Address:0x%08x Value 0x%08x\n",
+ ("Write(%d width) Address=%p Value %X\n",
BitWidth, Address, *Value));
switch (BitWidth)
OpenPOWER on IntegriCloud