summaryrefslogtreecommitdiff
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2018-05-08 13:41:53 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2018-05-08 13:41:53 +0000
commiteaa331e0d6a73c199036ecbb2eda90a453348e22 (patch)
tree749f06b5bfd09ef3b6f26ba1b7e254bdf00b0ef6 /sys/dev/pci
parent90dc32cceb02a00bfd0abde863c7f40be04db7b1 (diff)
Print xHCI revision in dmesg.
ok patrick@, kettenis@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/xhci_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/xhci_pci.c b/sys/dev/pci/xhci_pci.c
index 9c81902221b..dc05c0c90ec 100644
--- a/sys/dev/pci/xhci_pci.c
+++ b/sys/dev/pci/xhci_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xhci_pci.c,v 1.8 2016/06/01 06:19:59 mpi Exp $ */
+/* $OpenBSD: xhci_pci.c,v 1.9 2018/05/08 13:41:52 mpi Exp $ */
/*
* Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -173,7 +173,7 @@ xhci_pci_attach(struct device *parent, struct device *self, void *aux)
printf("\n");
goto unmap_ret;
}
- printf(": %s\n", intrstr);
+ printf(": %s", intrstr);
/* Figure out vendor for root hub descriptor. */
vendor = pci_findvendor(pa->pa_id);