Module Name:    src
Committed By:   msaitoh
Date:           Mon May 12 11:27:31 UTC 2014

Modified Files:
        src/sys/dev/pci: pci_subr.c

Log Message:
Fix newline problem which was added in previous commit.


To generate a diff of this commit:
cvs rdiff -u -r1.107 -r1.108 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.107 src/sys/dev/pci/pci_subr.c:1.108
--- src/sys/dev/pci/pci_subr.c:1.107	Fri May  9 14:51:26 2014
+++ src/sys/dev/pci/pci_subr.c	Mon May 12 11:27:31 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: pci_subr.c,v 1.107 2014/05/09 14:51:26 msaitoh Exp $	*/
+/*	$NetBSD: pci_subr.c,v 1.108 2014/05/12 11:27: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.107 2014/05/09 14:51:26 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.108 2014/05/12 11:27:31 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -1359,9 +1359,9 @@ pci_conf_print_pcie_cap(const pcireg_t *
 			if (((val >> i) & 0x01) != 0)
 				printf(" %sGT/s", linkspeeds[i]);
 		}
+		printf("\n");
 		printf("      Crosslink Supported: %s\n",
 		    (reg & PCIE_LCAP2_CROSSLNK) != 0 ? "yes" : "no");
-		printf("\n");
 
 		/* Link Control 2 */
 		reg = regs[o2i(capoff + PCIE_LCSR2)];

Reply via email to