mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
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:
parent
61db163fd0
commit
e1d8b631f6
1 changed files with 2 additions and 0 deletions
|
|
@ -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");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue