diff options
author | Matthew Wilcox <matthew@wil.cx> | 2009-12-13 16:11:35 +0300 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-02-23 03:15:19 +0300 |
commit | 9dfd97fe12f79ec8b68feb63912a4ef2f31f571a (patch) | |
tree | 845515c430a3cc48b1d88496d3b8f4d13bd7efb2 /include | |
parent | 45b4cdd57ef0e57555b2ab61b584784819b39365 (diff) | |
download | linux-9dfd97fe12f79ec8b68feb63912a4ef2f31f571a.tar.xz |
PCI: Add support for reporting PCIe 3.0 speeds
Add the 8.0 GT/s speed.
Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 842adaad312e..0c3a29444f89 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -210,6 +210,7 @@ enum pci_bus_speed { PCI_SPEED_133MHz_PCIX_533 = 0x13, PCIE_SPEED_2_5GT = 0x14, PCIE_SPEED_5_0GT = 0x15, + PCIE_SPEED_8_0GT = 0x16, PCI_SPEED_UNKNOWN = 0xff, }; |