Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-8]: src/sys/dev/pci Pull up following revision(s) (requested by m...



details:   https://anonhg.NetBSD.org/src/rev/bf470d0a3bd8
branches:  netbsd-8
changeset: 852437:bf470d0a3bd8
user:      martin <martin%NetBSD.org@localhost>
date:      Wed Jul 17 15:55:31 2019 +0000

description:
Pull up following revision(s) (requested by msaitoh in ticket #1295):

        sys/dev/pci/pci_subr.c: revision 1.213
        sys/dev/pci/ppb.c: revision 1.69

Identify 16GT/s.

diffstat:

 sys/dev/pci/pci_subr.c |  6 +++---
 sys/dev/pci/ppb.c      |  8 ++++----
 2 files changed, 7 insertions(+), 7 deletions(-)

diffs (56 lines):

diff -r 8440ff54dbdf -r bf470d0a3bd8 sys/dev/pci/pci_subr.c
--- a/sys/dev/pci/pci_subr.c    Wed Jul 17 15:43:18 2019 +0000
+++ b/sys/dev/pci/pci_subr.c    Wed Jul 17 15:55:31 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pci_subr.c,v 1.183.2.10 2019/07/17 15:34:31 martin Exp $       */
+/*     $NetBSD: pci_subr.c,v 1.183.2.11 2019/07/17 15:55:31 martin Exp $       */
 
 /*
  * Copyright (c) 1997 Zubin D. Dittia.  All rights reserved.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.183.2.10 2019/07/17 15:34:31 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.183.2.11 2019/07/17 15:55:31 martin Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -1688,7 +1688,7 @@
        }
 }
 
-static const char * const pcie_linkspeeds[] = {"2.5", "5.0", "8.0"};
+static const char * const pcie_linkspeeds[] = {"2.5", "5.0", "8.0", "16.0"};
 
 /*
  * Print link speed. This function is used for the following register bits:
diff -r 8440ff54dbdf -r bf470d0a3bd8 sys/dev/pci/ppb.c
--- a/sys/dev/pci/ppb.c Wed Jul 17 15:43:18 2019 +0000
+++ b/sys/dev/pci/ppb.c Wed Jul 17 15:55:31 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ppb.c,v 1.63.2.1 2019/02/01 11:25:13 martin Exp $      */
+/*     $NetBSD: ppb.c,v 1.63.2.2 2019/07/17 15:55:31 martin Exp $      */
 
 /*
  * Copyright (c) 1996, 1998 Christopher G. Demetriou.  All rights reserved.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ppb.c,v 1.63.2.1 2019/02/01 11:25:13 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ppb.c,v 1.63.2.2 2019/07/17 15:55:31 martin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -54,8 +54,8 @@
        (PCIE_SLCSR_ABP | PCIE_SLCSR_PFD | PCIE_SLCSR_MSC |     \
         PCIE_SLCSR_PDC | PCIE_SLCSR_CC | PCIE_SLCSR_LACS)
 
-static const char pcie_linkspeed_strings[4][5] = {
-       "1.25", "2.5", "5.0", "8.0",
+static const char pcie_linkspeed_strings[5][5] = {
+       "1.25", "2.5", "5.0", "8.0", "16.0"
 };
 
 int    ppb_printevent = 0; /* Print event type if the value is not 0 */



Home | Main Index | Thread Index | Old Index