Module Name: src Committed By: msaitoh Date: Mon Jun 20 10:02:43 UTC 2016
Modified Files: src/sys/dev/pci: pci_subr.c Log Message: B260 "Slot Power Limit" ECN. PCIe 3.1 ECN. September 18, 2015. To generate a diff of this commit: cvs rdiff -u -r1.147 -r1.148 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.147 src/sys/dev/pci/pci_subr.c:1.148 --- src/sys/dev/pci/pci_subr.c:1.147 Wed May 11 05:12:57 2016 +++ src/sys/dev/pci/pci_subr.c Mon Jun 20 10:02:43 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: pci_subr.c,v 1.147 2016/05/11 05:12:57 msaitoh Exp $ */ +/* $NetBSD: pci_subr.c,v 1.148 2016/06/20 10:02:43 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.147 2016/05/11 05:12:57 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.148 2016/06/20 10:02:43 msaitoh Exp $"); #ifdef _KERNEL_OPT #include "opt_pci.h" @@ -2472,11 +2472,11 @@ pci_conf_print_pwrbdgt_base_power(uint8_ switch (reg) { case 0xf0: - return "250W"; + return "239W < x <= 250W"; case 0xf1: - return "275W"; + return "250W < x <= 275W"; case 0xf2: - return "300W"; + return "275W < x <= 300W"; default: return "Unknown"; }