Home | History | Annotate | Download | only in acpidump

Lines Matching defs:wdat

3983 	ACPI_TABLE_WDAT *wdat;
3990 wdat = (ACPI_TABLE_WDAT *)sdp;
3992 printf("\tHeader Length=%d\n", wdat->HeaderLength);
3994 acpi_print_pci_sbdf(wdat->PciSegment, wdat->PciBus, wdat->PciDevice,
3995 wdat->PciFunction);
3996 printf("\n\tTimer Counter Period=%d msec\n", wdat->TimerPeriod);
3997 printf("\tTimer Maximum Counter Value=%d\n", wdat->MaxCount);
3998 printf("\tTimer Minimum Counter Value=%d\n", wdat->MinCount);
4001 if (wdat->Flags & ACPI_WDAT_ENABLED)
4003 if (wdat->Flags & ACPI_WDAT_STOPPED)
4007 wdat_pos = (ACPI_WDAT_ENTRY *)((char *)wdat + sizeof(ACPI_TABLE_WDAT));
4009 for (i = 0; i < wdat->Entries; i++) {