Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci "s/above 300W/greater than 300W/" in pci_conf_pr...



details:   https://anonhg.NetBSD.org/src/rev/4c0c164ddba8
branches:  trunk
changeset: 829440:4c0c164ddba8
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Thu Feb 01 02:50:51 2018 +0000

description:
"s/above 300W/greater than 300W/" in pci_conf_print_pcie_power(). From
PCIe Base Spec 3.1a Errata 2017-12-13.

diffstat:

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

diffs (27 lines):

diff -r 90c390804606 -r 4c0c164ddba8 sys/dev/pci/pci_subr.c
--- a/sys/dev/pci/pci_subr.c    Wed Jan 31 22:12:21 2018 +0000
+++ b/sys/dev/pci/pci_subr.c    Thu Feb 01 02:50:51 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pci_subr.c,v 1.197 2017/12/18 04:48:28 msaitoh Exp $   */
+/*     $NetBSD: pci_subr.c,v 1.198 2018/02/01 02:50:51 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.197 2017/12/18 04:48:28 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.198 2018/02/01 02:50:51 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -2856,7 +2856,7 @@
                        s = "275W < x <= 300W";
                        break;
                default:
-                       s = "reserved for above 300W";
+                       s = "reserved for greater than 300W";
                        break;
                }
                printf("%s\n", s);



Home | Main Index | Thread Index | Old Index