1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-22 16:42:56 -08:00

recognise 8.0 GT/s link speed for PCI Express 3.0

This commit is contained in:
jsg 2012-05-16 12:58:39 +00:00
parent dcc3446a8c
commit d5fc1bc805

View File

@ -1,4 +1,4 @@
/* $OpenBSD: pcidump.c,v 1.29 2011/01/13 14:29:26 jsg Exp $ */
/* $OpenBSD: pcidump.c,v 1.30 2012/05/16 12:58:39 jsg Exp $ */
/*
* Copyright (c) 2006, 2007 David Gwynne <loki@animata.net>
@ -289,6 +289,9 @@ print_pcie_ls(uint8_t speed)
case 2:
printf("5.0");
break;
case 3:
printf("8.0");
break;
default:
printf("unknown (%d)", speed);
}