Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci One more Gb/s -> GT/s fix.



details:   https://anonhg.NetBSD.org/src/rev/942ad9cee760
branches:  trunk
changeset: 789045:942ad9cee760
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Mon Aug 05 07:53:31 2013 +0000

description:
One more Gb/s -> GT/s fix.

diffstat:

 sys/dev/pci/pci_subr.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 0004333634cd -r 942ad9cee760 sys/dev/pci/pci_subr.c
--- a/sys/dev/pci/pci_subr.c    Mon Aug 05 03:36:48 2013 +0000
+++ b/sys/dev/pci/pci_subr.c    Mon Aug 05 07:53:31 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pci_subr.c,v 1.105 2013/04/21 23:54:44 msaitoh Exp $   */
+/*     $NetBSD: pci_subr.c,v 1.106 2013/08/05 07:53:31 msaitoh 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.105 2013/04/21 23:54:44 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.106 2013/08/05 07:53:31 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -1108,7 +1108,7 @@
                        printf("unknown %u value\n",
                            (unsigned int)(reg & PCIE_LCSR_LINKSPEED) >> 16);
                } else {
-                       printf("%sGb/s\n",
+                       printf("%sGT/s\n",
                            linkspeeds[((reg & PCIE_LCSR_LINKSPEED) >> 16) - 1]);
                }
                printf("      Negotiated Link Width: x%u lanes\n",



Home | Main Index | Thread Index | Old Index