summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2004-10-29 19:35:13 +0000
committermiod <miod@openbsd.org>2004-10-29 19:35:13 +0000
commit900483c60acd8c92ef025323d9a86a90717a4e5b (patch)
tree48ee36937b653e3dcaad81fe7ae10d06062b02d9
parentadd re(4), ok pval (diff)
downloadwireguard-openbsd-900483c60acd8c92ef025323d9a86a90717a4e5b.tar.xz
wireguard-openbsd-900483c60acd8c92ef025323d9a86a90717a4e5b.zip
Prettier dmesg on vortexes.
-rw-r--r--sys/dev/eisa/if_ep_eisa.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/eisa/if_ep_eisa.c b/sys/dev/eisa/if_ep_eisa.c
index acd0924c5b9..c8da5199b63 100644
--- a/sys/dev/eisa/if_ep_eisa.c
+++ b/sys/dev/eisa/if_ep_eisa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ep_eisa.c,v 1.18 2004/05/12 06:35:10 tedu Exp $ */
+/* $OpenBSD: if_ep_eisa.c,v 1.19 2004/10/29 19:35:13 miod Exp $ */
/* $NetBSD: if_ep_eisa.c,v 1.13 1997/04/18 00:50:33 cgd Exp $ */
/*
@@ -204,4 +204,7 @@ ep_eisa_attach(parent, self, aux)
printf(" %s,", intrstr);
epconfig(sc, chipset, NULL);
+ /* XXX because epconfig() will not print a newline for vortex chips */
+ if (chipset == EP_CHIPSET_VORTEX)
+ printf("\n");
}