summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/exdump.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/exdump.c')
-rw-r--r--sys/contrib/dev/acpica/exdump.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/sys/contrib/dev/acpica/exdump.c b/sys/contrib/dev/acpica/exdump.c
index 798b3c0..180c4e0 100644
--- a/sys/contrib/dev/acpica/exdump.c
+++ b/sys/contrib/dev/acpica/exdump.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: exdump - Interpreter debug output routines
- * $Revision: 166 $
+ * $Revision: 167 $
*
*****************************************************************************/
@@ -741,9 +741,9 @@ AcpiExDumpObjectDescriptor (
case ACPI_TYPE_DEVICE:
- AcpiExOutPointer ("AddrHandler", ObjDesc->Device.AddrHandler);
- AcpiExOutPointer ("SysHandler", ObjDesc->Device.SysHandler);
- AcpiExOutPointer ("DrvHandler", ObjDesc->Device.DrvHandler);
+ AcpiExOutPointer ("AddressSpace", ObjDesc->Device.AddressSpace);
+ AcpiExOutPointer ("SystemNotify", ObjDesc->Device.SystemNotify);
+ AcpiExOutPointer ("DeviceNotify", ObjDesc->Device.DeviceNotify);
break;
@@ -779,7 +779,7 @@ AcpiExDumpObjectDescriptor (
AcpiExOutInteger ("Flags", ObjDesc->Region.Flags);
AcpiExOutAddress ("Address", ObjDesc->Region.Address);
AcpiExOutInteger ("Length", ObjDesc->Region.Length);
- AcpiExOutPointer ("AddrHandler", ObjDesc->Region.AddrHandler);
+ AcpiExOutPointer ("AddressSpace", ObjDesc->Region.AddressSpace);
AcpiExOutPointer ("Next", ObjDesc->Region.Next);
break;
@@ -788,8 +788,8 @@ AcpiExDumpObjectDescriptor (
AcpiExOutInteger ("SystemLevel", ObjDesc->PowerResource.SystemLevel);
AcpiExOutInteger ("ResourceOrder", ObjDesc->PowerResource.ResourceOrder);
- AcpiExOutPointer ("SysHandler", ObjDesc->PowerResource.SysHandler);
- AcpiExOutPointer ("DrvHandler", ObjDesc->PowerResource.DrvHandler);
+ AcpiExOutPointer ("SystemNotify", ObjDesc->PowerResource.SystemNotify);
+ AcpiExOutPointer ("DeviceNotify", ObjDesc->PowerResource.DeviceNotify);
break;
@@ -798,17 +798,17 @@ AcpiExDumpObjectDescriptor (
AcpiExOutInteger ("Processor ID", ObjDesc->Processor.ProcId);
AcpiExOutInteger ("Length", ObjDesc->Processor.Length);
AcpiExOutAddress ("Address", (ACPI_PHYSICAL_ADDRESS) ObjDesc->Processor.Address);
- AcpiExOutPointer ("SysHandler", ObjDesc->Processor.SysHandler);
- AcpiExOutPointer ("DrvHandler", ObjDesc->Processor.DrvHandler);
- AcpiExOutPointer ("AddrHandler", ObjDesc->Processor.AddrHandler);
+ AcpiExOutPointer ("SystemNotify", ObjDesc->Processor.SystemNotify);
+ AcpiExOutPointer ("DeviceNotify", ObjDesc->Processor.DeviceNotify);
+ AcpiExOutPointer ("AddressSpace", ObjDesc->Processor.AddressSpace);
break;
case ACPI_TYPE_THERMAL:
- AcpiExOutPointer ("SysHandler", ObjDesc->ThermalZone.SysHandler);
- AcpiExOutPointer ("DrvHandler", ObjDesc->ThermalZone.DrvHandler);
- AcpiExOutPointer ("AddrHandler", ObjDesc->ThermalZone.AddrHandler);
+ AcpiExOutPointer ("SystemNotify", ObjDesc->ThermalZone.SystemNotify);
+ AcpiExOutPointer ("DeviceNotify", ObjDesc->ThermalZone.DeviceNotify);
+ AcpiExOutPointer ("AddressSpace", ObjDesc->ThermalZone.AddressSpace);
break;
@@ -869,18 +869,18 @@ AcpiExDumpObjectDescriptor (
case ACPI_TYPE_LOCAL_ADDRESS_HANDLER:
- AcpiExOutInteger ("SpaceId", ObjDesc->AddrHandler.SpaceId);
- AcpiExOutPointer ("Next", ObjDesc->AddrHandler.Next);
- AcpiExOutPointer ("RegionList", ObjDesc->AddrHandler.RegionList);
- AcpiExOutPointer ("Node", ObjDesc->AddrHandler.Node);
- AcpiExOutPointer ("Context", ObjDesc->AddrHandler.Context);
+ AcpiExOutInteger ("SpaceId", ObjDesc->AddressSpace.SpaceId);
+ AcpiExOutPointer ("Next", ObjDesc->AddressSpace.Next);
+ AcpiExOutPointer ("RegionList", ObjDesc->AddressSpace.RegionList);
+ AcpiExOutPointer ("Node", ObjDesc->AddressSpace.Node);
+ AcpiExOutPointer ("Context", ObjDesc->AddressSpace.Context);
break;
case ACPI_TYPE_LOCAL_NOTIFY:
- AcpiExOutPointer ("Node", ObjDesc->NotifyHandler.Node);
- AcpiExOutPointer ("Context", ObjDesc->NotifyHandler.Context);
+ AcpiExOutPointer ("Node", ObjDesc->Notify.Node);
+ AcpiExOutPointer ("Context", ObjDesc->Notify.Context);
break;
OpenPOWER on IntegriCloud