summaryrefslogtreecommitdiff
path: root/lspci.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2007-10-19 12:03:08 +0200
committerMartin Mares <mj@ucw.cz>2007-10-19 12:03:08 +0200
commitf7c76ec5bd9eab989f7ed743f7625057158bbbc5 (patch)
tree1944afa5f2ff9947a0755d5480252ac77c640105 /lspci.c
parent4bea6db7f8fc8830538c72281aa671ad7fb04eca (diff)
downloadpciutils-f7c76ec5bd9eab989f7ed743f7625057158bbbc5.tar.gz
Added two more capability ID's gathered from various ECN's.
Diffstat (limited to 'lspci.c')
-rw-r--r--lspci.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lspci.c b/lspci.c
index 035cbbb..81192ee 100644
--- a/lspci.c
+++ b/lspci.c
@@ -1436,6 +1436,12 @@ show_caps(struct device *d)
case PCI_CAP_ID_MSIX:
cap_msix(d, where, cap);
break;
+ case PCI_CAP_ID_SATA:
+ printf("SATA HBA <?>\n");
+ break;
+ case PCI_CAP_ID_AF:
+ printf("PCIe advanced features <?>\n");
+ break;
default:
printf("#%02x [%04x]\n", id, cap);
}