Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci Add missing ':'



details:   https://anonhg.NetBSD.org/src/rev/b34fe47ee9ba
branches:  trunk
changeset: 823287:b34fe47ee9ba
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Tue Apr 18 10:00:26 2017 +0000

description:
Add missing ':'

diffstat:

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

diffs (27 lines):

diff -r 8bd1dc8f6315 -r b34fe47ee9ba sys/dev/pci/pci_subr.c
--- a/sys/dev/pci/pci_subr.c    Tue Apr 18 07:44:20 2017 +0000
+++ b/sys/dev/pci/pci_subr.c    Tue Apr 18 10:00:26 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pci_subr.c,v 1.173 2017/04/17 09:33:00 msaitoh Exp $   */
+/*     $NetBSD: pci_subr.c,v 1.174 2017/04/18 10:00:26 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.173 2017/04/17 09:33:00 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.174 2017/04/18 10:00:26 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -2675,7 +2675,7 @@
                parbsel = __SHIFTOUT(reg, PCI_VC_RESOURCE_CTL_PORT_ARB_SELECT);
                printf("        Port Arbitration Select: 0x%x\n", parbsel);
                n = __SHIFTOUT(reg, PCI_VC_RESOURCE_CTL_VC_ID);
-               printf("        VC ID %d\n", n);
+               printf("        VC ID: %d\n", n);
                onoff("  VC Enable", reg, PCI_VC_RESOURCE_CTL_VC_ENABLE);
 
                reg = regs[o2i(extcapoff + PCI_VC_RESOURCE_STA(i))] >> 16;



Home | Main Index | Thread Index | Old Index