pciconf: report PCI Gen4 speeds

PCIe gen4 runs at 16GT/s.  Report this as
the speed of Gen4 links.

Reviewed by:	imp
MFC after:	7 days
Sponsored by:	Netflix
This commit is contained in:
Andrew Gallatin 2019-07-23 16:28:17 +00:00
parent 61db163fd0
commit e1d8b631f6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=350245

View File

@ -389,6 +389,8 @@ link_speed_string(uint8_t speed)
return ("5.0");
case 3:
return ("8.0");
case 4:
return ("16.0");
default:
return ("undef");
}