summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Chiang2007-08-22 01:49:07 +0200
committerGreg Kroah-Hartman2007-10-13 00:03:16 +0200
commit9f672153ba921fdc6d4ef5ca8f6e65ac58cc970c (patch)
tree02b6d920c2a2a9c7cb1c0d8d93b99ff478a47a2c
parenti386: add support for picopower irq router (diff)
downloadkernel-qcow2-linux-9f672153ba921fdc6d4ef5ca8f6e65ac58cc970c.tar.gz
kernel-qcow2-linux-9f672153ba921fdc6d4ef5ca8f6e65ac58cc970c.tar.xz
kernel-qcow2-linux-9f672153ba921fdc6d4ef5ca8f6e65ac58cc970c.zip
PCI: Add missing PCI capability IDs
These IDs are in pciutils, but haven't been added to the kernel yet. Signed-off-by: Alex Chiang <achiang@hp.com> Signed-off-by: Matthew Wilcox <matthew@wil.cx> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--include/linux/pci_regs.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/pci_regs.h b/include/linux/pci_regs.h
index 423d592c55d5..4a24ee368a11 100644
--- a/include/linux/pci_regs.h
+++ b/include/linux/pci_regs.h
@@ -202,8 +202,12 @@
#define PCI_CAP_ID_CHSWP 0x06 /* CompactPCI HotSwap */
#define PCI_CAP_ID_PCIX 0x07 /* PCI-X */
#define PCI_CAP_ID_HT 0x08 /* HyperTransport */
-#define PCI_CAP_ID_VNDR 0x09 /* Vendor specific capability */
+#define PCI_CAP_ID_VNDR 0x09 /* Vendor specific */
+#define PCI_CAP_ID_DBG 0x0A /* Debug port */
+#define PCI_CAP_ID_CCRC 0x0B /* CompactPCI Central Resource Control */
#define PCI_CAP_ID_SHPC 0x0C /* PCI Standard Hot-Plug Controller */
+#define PCI_CAP_ID_SSVID 0x0D /* Bridge subsystem vendor/device ID */
+#define PCI_CAP_ID_AGP3 0x0E /* AGP Target PCI-PCI bridge */
#define PCI_CAP_ID_EXP 0x10 /* PCI Express */
#define PCI_CAP_ID_MSIX 0x11 /* MSI-X */
#define PCI_CAP_LIST_NEXT 1 /* Next capability in the list */