diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-05-08 13:41:53 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-05-08 13:41:53 +0000 |
commit | eaa331e0d6a73c199036ecbb2eda90a453348e22 (patch) | |
tree | 749f06b5bfd09ef3b6f26ba1b7e254bdf00b0ef6 /sys/dev/pci | |
parent | 90dc32cceb02a00bfd0abde863c7f40be04db7b1 (diff) |
Print xHCI revision in dmesg.
ok patrick@, kettenis@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/xhci_pci.c | 4 |
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); |