Module Name: src Committed By: msaitoh Date: Thu Feb 1 02:50:51 UTC 2018
Modified Files: src/sys/dev/pci: pci_subr.c Log Message: "s/above 300W/greater than 300W/" in pci_conf_print_pcie_power(). From PCIe Base Spec 3.1a Errata 2017-12-13. To generate a diff of this commit: cvs rdiff -u -r1.197 -r1.198 src/sys/dev/pci/pci_subr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/pci/pci_subr.c diff -u src/sys/dev/pci/pci_subr.c:1.197 src/sys/dev/pci/pci_subr.c:1.198 --- src/sys/dev/pci/pci_subr.c:1.197 Mon Dec 18 04:48:28 2017 +++ src/sys/dev/pci/pci_subr.c Thu Feb 1 02:50:51 2018 @@ -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 @@ pci_conf_print_pcie_power(uint8_t base, s = "275W < x <= 300W"; break; default: - s = "reserved for above 300W"; + s = "reserved for greater than 300W"; break; } printf("%s\n", s);