diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2013-05-17 14:05:31 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2013-05-17 14:05:31 +0000 |
| commit | 5d6787cfb2bd0e579c0655f9ed4ba9d58d9fecfe (patch) | |
| tree | 82ab3717369593186045f950fe93b8a520073df8 /usr.sbin/pciconf | |
| parent | f05f3c1764ee5e10e09392ccfa3f3cfc3667450c (diff) | |
Notes
Diffstat (limited to 'usr.sbin/pciconf')
| -rw-r--r-- | usr.sbin/pciconf/cap.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/usr.sbin/pciconf/cap.c b/usr.sbin/pciconf/cap.c index 1c2ab4a88777..275b9842bd60 100644 --- a/usr.sbin/pciconf/cap.c +++ b/usr.sbin/pciconf/cap.c @@ -276,6 +276,18 @@ cap_ht(int fd, struct pci_conf *p, uint8_t ptr) case PCIM_HTCAP_X86_ENCODING: printf("X86 encoding"); break; + case PCIM_HTCAP_GEN3: + printf("Gen3"); + break; + case PCIM_HTCAP_FLE: + printf("function-level extension"); + break; + case PCIM_HTCAP_PM: + printf("power management"); + break; + case PCIM_HTCAP_HIGH_NODE_COUNT: + printf("high node count"); + break; default: printf("unknown %02x", command); break; |
