Teach acpidump(8) to display the 'Flags' field in the HPET Description Table.

Reviewed by:	jhb@
This commit is contained in:
Neel Natu 2013-11-22 18:53:54 +00:00
parent da71787841
commit 9785e97901
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=258474

View File

@ -501,6 +501,7 @@ acpi_handle_hpet(ACPI_TABLE_HEADER *sdp)
printf("FALSE}\n");
printf("\tPCI Vendor ID=0x%04x\n", hpet->Id >> 16);
printf("\tMinimal Tick=%d\n", hpet->MinimumTick);
printf("\tFlags=0x%02x\n", hpet->Flags);
printf(END_COMMENT);
}