Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/pci Fix newline problem which was added in previous ...
details: https://anonhg.NetBSD.org/src/rev/505da52599a4
branches: trunk
changeset: 329152:505da52599a4
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Mon May 12 11:27:31 2014 +0000
description:
Fix newline problem which was added in previous commit.
diffstat:
sys/dev/pci/pci_subr.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (29 lines):
diff -r 3a1ba70dced8 -r 505da52599a4 sys/dev/pci/pci_subr.c
--- a/sys/dev/pci/pci_subr.c Mon May 12 09:01:34 2014 +0000
+++ b/sys/dev/pci/pci_subr.c Mon May 12 11:27:31 2014 +0000
@@ -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 @@
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)];
Home |
Main Index |
Thread Index |
Old Index